Bug 1254384: Remove support for ion-eager, baseline-eager, and dump-bytecode from js/src/jit-test harness. r=nbp

--HG--
extra : rebase_source : acb308d6a2809744080f0d52d509083790a5d9dd
This commit is contained in:
Jim Blandy 2016-03-07 18:23:10 -08:00
parent b450cd68c7
commit 629fcdc697
2 changed files with 7 additions and 14 deletions

View File

@ -44,7 +44,7 @@ test case:
The first line of a test case can contain a special comment controlling how the
test is run. For example:
// |jit-test| allow-oom;
// |jit-test| allow-oom; --no-threads
The general format in EBNF is:
@ -52,14 +52,13 @@ The general format in EBNF is:
cookie ::= "|jit-test|"
item ::= flag | attribute
flag ::= "slow" | "allow-oom" | "valgrind" | "tz-pacific" |
"ion-eager" | "debug" |
"dump-bytecode" |
flag ::= "slow" | "allow-oom" | "valgrind" | "tz-pacific" | "debug" |
"--" switch
attribute ::= name ":" value
name ::= "error" | "exitstatus"
value ::= <string>
switch ::= <string>
The metaline may appear anywhere in the first line of the file: this allows it
to be placed inside any kind of comment.
@ -70,12 +69,12 @@ The meaning of the items:
allow-oom If the test runs out of memory, it counts as passing.
valgrind Run test under valgrind.
tz-pacific Always run test with the Pacific time zone (TZ=PST8PDT).
ion-eager Run js with --ion-eager, whether --jitflags says to or not
debug Run js with -d, whether --jitflags says to or not
dump-bytecode Run js with -D, whether --jitflags says to or not
error The test should be considered to pass iff it throws the
given JS exception.
exitstatus The test should exit with the given status value (an integer).
debug Run js with -d, whether --jitflags says to or not
--SWITCH Pass --SWITCH through to js
* END

View File

@ -219,12 +219,6 @@ class JitTest:
test.test_also.append([name[len('test-also='):]])
elif name.startswith('test-join='):
test.test_join.append([name[len('test-join='):]])
elif name == 'ion-eager':
test.jitflags.append('--ion-eager')
elif name == 'baseline-eager':
test.jitflags.append('--baseline-eager')
elif name == 'dump-bytecode':
test.jitflags.append('--dump-bytecode')
elif name == 'module':
test.is_module = True
elif name.startswith('--'):