From 0966558b075b9b454e1a7864306eb206bf0c0094 Mon Sep 17 00:00:00 2001 From: Calin Juravle Date: Tue, 20 Dec 2016 14:00:48 +0000 Subject: [PATCH] Use interpret-only instead of verify-at-runtime when testing JIT That's because we run most of our products with interpret-only and not verify-at-runtime. Test: ART_TEST_JIT=true m test-art-host Change-Id: I5a75f5c47a9e811db3ee7c3475a03fb648dba80d --- test/etc/run-test-jar | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/etc/run-test-jar b/test/etc/run-test-jar index f0abb442b..f3958662d 100755 --- a/test/etc/run-test-jar +++ b/test/etc/run-test-jar @@ -369,8 +369,8 @@ fi if [ "$JIT" = "y" ]; then INT_OPTS="-Xusejit:true" if [ "$VERIFY" = "y" ] ; then - INT_OPTS="${INT_OPTS} -Xcompiler-option --compiler-filter=verify-at-runtime" - COMPILE_FLAGS="${COMPILE_FLAGS} --compiler-filter=verify-at-runtime" + INT_OPTS="${INT_OPTS} -Xcompiler-option --compiler-filter=interpret-only" + COMPILE_FLAGS="${COMPILE_FLAGS} --compiler-filter=interpret-only" else INT_OPTS="${INT_OPTS} -Xcompiler-option --compiler-filter=verify-none" COMPILE_FLAGS="${COMPILE_FLAGS} --compiler-filter=verify-none" -- 2.11.0