diff options
| -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 |