diff options
Diffstat (limited to 'test/run-test')
| -rwxr-xr-x | test/run-test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/run-test b/test/run-test index fc57d0914f..424c54f2c9 100755 --- a/test/run-test +++ b/test/run-test @@ -244,11 +244,11 @@ while true; do run_args="${run_args} --zygote" shift elif [ "x$1" = "x--interpreter" ]; then - run_args="${run_args} --interpreter --runtime-option -XOatFileManagerCompilerFilter:verify-at-runtime" + run_args="${run_args} --interpreter" image_suffix="-interpreter" shift elif [ "x$1" = "x--jit" ]; then - run_args="${run_args} --jit --runtime-option -XOatFileManagerCompilerFilter:verify-at-runtime" + run_args="${run_args} --jit" image_suffix="-jit" shift elif [ "x$1" = "x--optimizing" ]; then @@ -256,10 +256,10 @@ while true; do image_suffix="-optimizing" shift elif [ "x$1" = "x--no-verify" ]; then - run_args="${run_args} --no-verify --runtime-option -XOatFileManagerCompilerFilter:verify-none" + run_args="${run_args} --no-verify" shift elif [ "x$1" = "x--verify-soft-fail" ]; then - run_args="${run_args} --verify-soft-fail --runtime-option -XOatFileManagerCompilerFilter:verify-at-runtime" + run_args="${run_args} --verify-soft-fail" image_suffix="-interp-ac" shift elif [ "x$1" = "x--no-optimize" ]; then |