From 45cd7b63bf9bd7361a83fcb16722b946f8ab18b9 Mon Sep 17 00:00:00 2001 From: Jon Coppeard Date: Fri, 22 Jul 2016 13:57:20 +0100 Subject: [PATCH] Bug 1288716 - Fix jit-test handling of --tbpl argument r=bbouvier --- js/src/jit-test/jit_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/jit-test/jit_test.py b/js/src/jit-test/jit_test.py index 4bf7fa0b191d..bb580fb24442 100755 --- a/js/src/jit-test/jit_test.py +++ b/js/src/jit-test/jit_test.py @@ -121,7 +121,7 @@ def main(argv): op.add_option('--ion', dest='jitflags', action='store_const', const='ion', help='Run tests once with --ion-eager and once with' ' --baseline-eager (equivalent to --jitflags=ion)') - op.add_option('--tbpl', dest='jit_flags', action='store_const', const='all', + op.add_option('--tbpl', dest='jitflags', action='store_const', const='all', help='Run tests with all IonMonkey option combinations' ' (equivalent to --jitflags=all)') op.add_option('-j', '--worker-count', dest='max_jobs', type=int,