Add missing generated tests.
authormstarzinger@chromium.org <mstarzinger@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Wed, 30 Jul 2014 14:19:42 +0000 (14:19 +0000)
committermstarzinger@chromium.org <mstarzinger@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Wed, 30 Jul 2014 14:19:42 +0000 (14:19 +0000)
R=danno@google.com, danno@chromium.org

Review URL: https://codereview.chromium.org/425263002

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22711 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

test/mjsunit/runtime-gen/booleanize.js [new file with mode: 0644]
test/mjsunit/runtime-gen/isoptimized.js [new file with mode: 0644]
test/mjsunit/runtime-gen/newarguments.js [new file with mode: 0644]

diff --git a/test/mjsunit/runtime-gen/booleanize.js b/test/mjsunit/runtime-gen/booleanize.js
new file mode 100644 (file)
index 0000000..d264d5d
--- /dev/null
@@ -0,0 +1,6 @@
+// Copyright 2014 the V8 project authors. All rights reserved.
+// AUTO-GENERATED BY tools/generate-runtime-tests.py, DO NOT MODIFY
+// Flags: --allow-natives-syntax --harmony
+var _value_raw = new Object();
+var _token_raw = 1;
+%Booleanize(_value_raw, _token_raw);
diff --git a/test/mjsunit/runtime-gen/isoptimized.js b/test/mjsunit/runtime-gen/isoptimized.js
new file mode 100644 (file)
index 0000000..4b8906c
--- /dev/null
@@ -0,0 +1,4 @@
+// Copyright 2014 the V8 project authors. All rights reserved.
+// AUTO-GENERATED BY tools/generate-runtime-tests.py, DO NOT MODIFY
+// Flags: --allow-natives-syntax --harmony
+%IsOptimized();
diff --git a/test/mjsunit/runtime-gen/newarguments.js b/test/mjsunit/runtime-gen/newarguments.js
new file mode 100644 (file)
index 0000000..a464c78
--- /dev/null
@@ -0,0 +1,5 @@
+// Copyright 2014 the V8 project authors. All rights reserved.
+// AUTO-GENERATED BY tools/generate-runtime-tests.py, DO NOT MODIFY
+// Flags: --allow-natives-syntax --harmony
+var _callee = function() {};
+%NewArguments(_callee);