summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-06 00:10:22 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-06 00:10:22 +0000
commit37872dbf2b040d6cc22c962f3e30bad3e14460cb (patch)
tree3c7e5326ffbfec1d726231546a21c8c19f853c49
parent0667aac9145c48753e950a891f21beced5648116 (diff)
add a comment.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40144 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--test/ruby/test_pack.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_pack.rb b/test/ruby/test_pack.rb
index 9a83293fec..39a9c1ab23 100644
--- a/test/ruby/test_pack.rb
+++ b/test/ruby/test_pack.rb
@@ -404,6 +404,7 @@ class TestPack < Test::Unit::TestCase
assert_equal([578437695752307201, 17940646550795321087], s1.unpack("Q*"))
# Note: q! and Q! should not work on platform which has no long long type.
+ # Is there a such platform now?
s1 = [578437695752307201, -506097522914230529].pack("q!*")
s2 = [578437695752307201, 17940646550795321087].pack("Q!*")
assert_equal([578437695752307201, -506097522914230529], s2.unpack("q!*"))