blob: 715aea6c51c7679925c4be9b99311c9919f20f5c [file] [log] [blame]
guijemont@igalia.com52596ba2018-11-01 19:49:03 +00001// FIXME: unskip when this is solved
2// https://bugs.webkit.org/show_bug.cgi?id=191163
guijemont@igalia.com18f18162019-01-24 12:04:36 +00003//@ skip if ["arm", "mips", "x86"].include?($architecture)
mark.lam@apple.com389ff7f2016-09-29 19:11:05 +00004//@ runFTLNoCJIT
5
6// If all goes well, this test module will terminate silently. If not, it will print
7// errors. See binary-op-test.js for debugging options if needed.
8
9load("./resources/binary-op-test.js");
10
11//============================================================================
12// Test configuration data:
13
14var opName = "rshift";
15var op = ">>";
16
17load("./resources/binary-op-values.js");
18
19tests = [];
20generateBinaryTests(tests, opName, op, "VarConst", values, values);
21
22run();