diff options
| author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-02-17 02:21:39 +0000 |
|---|---|---|
| committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-02-17 02:21:39 +0000 |
| commit | 35bd64b5d517faf8e4e0f40f214312e6bfbaede6 (patch) | |
| tree | a13f61d930df2858bf8da602ec0128910bec4582 /test/ruby/test_pack.rb | |
| parent | d401f539bb3ba12d94bce508965eab9910e48110 (diff) | |
| download | ruby-35bd64b5d517faf8e4e0f40f214312e6bfbaede6.tar.gz ruby-35bd64b5d517faf8e4e0f40f214312e6bfbaede6.tar.xz ruby-35bd64b5d517faf8e4e0f40f214312e6bfbaede6.zip | |
* util.c (ruby_strtod): Float("1e") should fail. [ruby-core:7330]
* pack.c (EXTEND32): unpack("l") did not work where sizeof(long) != 4.
[ruby-talk:180024]
* pack.c (pack_unpack): fixed integer overflow on template "w".
[ruby-talk:180126]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9947 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_pack.rb')
| -rw-r--r-- | test/ruby/test_pack.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/ruby/test_pack.rb b/test/ruby/test_pack.rb index a9f15599e..e67465b33 100644 --- a/test/ruby/test_pack.rb +++ b/test/ruby/test_pack.rb @@ -15,6 +15,9 @@ class TestPack < Test::Unit::TestCase $x = [-1073741825] assert_equal($x, $x.pack("q").unpack("q")) + + $x = [-1] + assert_equal($x, $x.pack("l").unpack("l")) end def test_pack_N |
