diff options
| author | 2017-06-09 16:31:21 +0100 | |
|---|---|---|
| committer | 2017-06-09 16:31:21 +0100 | |
| commit | f654ef9c7003028fb8bb03f4ead3019795c52214 (patch) | |
| tree | bf28d63e9d3b80aa849299e887c78bb39f6837ef | |
| parent | fed9cb178be878f4e5ff862ac78ae2cf5ad305d3 (diff) | |
no-image does not prebuild, so disable checker for this.
Follow-up on the fact we quicken now in OatFileAssistant.
test: test.py --no-image
Change-Id: I05179ca9d3fd943b04693ada4b7c31aae7bd0ac7
| -rwxr-xr-x | test/run-test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/run-test b/test/run-test index 7db37a4d70..08be213c89 100755 --- a/test/run-test +++ b/test/run-test @@ -728,8 +728,8 @@ export TEST_NAME=`basename ${test_dir}` # Checker when compiled with Optimizing on host. if [[ "$TEST_NAME" =~ ^[0-9]+-checker- ]]; then if [ "$runtime" = "art" -a "$image_suffix" = "" -a "$USE_JACK" = "true" ]; then - # In no-prebuild mode, the compiler only quickens so disable the checker. - if [ "$prebuild_mode" = "yes" ]; then + # In no-prebuild or no-image mode, the compiler only quickens so disable the checker. + if [ "$prebuild_mode" = "yes" -a "$have_image" = "yes" ]; then run_checker="yes" if [ "$target_mode" = "no" ]; then |