summaryrefslogtreecommitdiff
path: root/bootstraptest
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-27 08:17:01 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-27 08:17:01 +0000
commit4365e64005ed77a6b5af4f77d133b0514f2028e5 (patch)
treec8609844cafd16d84429c46dd5787ba6c02956f4 /bootstraptest
parentb16d73ae0c55db444026780871552b81693f5438 (diff)
bootstraptest/test_insns.rb: test newhashfromarray
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65385 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rw-r--r--bootstraptest/test_insns.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/bootstraptest/test_insns.rb b/bootstraptest/test_insns.rb
index 6de5c60999..88f36bd0c2 100644
--- a/bootstraptest/test_insns.rb
+++ b/bootstraptest/test_insns.rb
@@ -112,6 +112,7 @@ tests = [
[ 'newhash', %q{ x = {}; x[x] = true }, ],
[ 'newhash', %q{ x = true; { x => x }[x] }, ],
+ [ 'newhashfromarray', %q{ { a: true }[:a] }, ],
[ 'newrange', %q{ x = 1; [*(0..x)][0] == 0 }, ],
[ 'newrange', %q{ x = 1; [*(0...x)][0] == 0 }, ],
'/ruby.git/commit/rjit_c.c?h=v3_3_0_preview2&id=d8344559b224a701caa80a2f72e0798ded80bcd7'>RJIT: Simplify how Capstone is used in testsTakashi Kokubun 2023-03-12RJIT: Fix -Wshorten-64-to-32Takashi Kokubun 2023-03-12RJIT: Implement --rjit-trace-exitsTakashi Kokubun 2023-03-11RJIT: Automate function pointer importsTakashi Kokubun 2023-03-11RJIT: Use SIZET macros instead of original PTR onesTakashi Kokubun 2023-03-10RJIT: Introduce --rjit-exec-mem-sizeTakashi Kokubun 2023-03-08RJIT: Make functions in rjit_c.c staticTakashi Kokubun 2023-03-08RJIT: Stop allowing leaked globals rjit_*Takashi Kokubun 2023-03-08RJIT: Clean up the declaration messTakashi Kokubun 2023-03-07Allow enabling YJIT and RJIT independently (#7474)Takashi Kokubun 2023-03-06s/mjit/rjit/Takashi Kokubun 2023-03-06s/MJIT/RJIT/Takashi Kokubun 2023-03-06Rename MJIT filenames to RJITTakashi Kokubun