summaryrefslogtreecommitdiffstats
path: root/test/etc/run-test-jar
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2014-10-29 23:02:11 +0000
committerNicolas Geoffray <ngeoffray@google.com>2014-10-29 23:02:11 +0000
commit68e25eb5bf2d6e4a253f0627a650e8b7419ad043 (patch)
tree0023ebcc21ece161b236ca4b8a3c1bdcc0f92d65 /test/etc/run-test-jar
parent560473c74cc3755b652f86a61039e4a12c08afe2 (diff)
downloadart-68e25eb5bf2d6e4a253f0627a650e8b7419ad043.tar.gz
art-68e25eb5bf2d6e4a253f0627a650e8b7419ad043.tar.bz2
art-68e25eb5bf2d6e4a253f0627a650e8b7419ad043.zip
Fix combination of prebuild/no-image.
Prebuild should always have an image. It's running the test that should not. Change-Id: I659514fba053c19edf13384ce061497d9b3a9e27
Diffstat (limited to 'test/etc/run-test-jar')
-rwxr-xr-xtest/etc/run-test-jar4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/etc/run-test-jar b/test/etc/run-test-jar
index 9b1af70733..39f28c877a 100755
--- a/test/etc/run-test-jar
+++ b/test/etc/run-test-jar
@@ -210,10 +210,8 @@ fi
if [ "$HAVE_IMAGE" = "n" ]; then
DALVIKVM_BOOT_OPT="-Ximage:/system/non-existant/core.art"
- DEX2OAT_BOOT_OPT="--boot-image=/system/non-existant/core.art"
else
DALVIKVM_BOOT_OPT="-Ximage:${BOOT_IMAGE}"
- DEX2OAT_BOOT_OPT="--boot-image=${BOOT_IMAGE}"
fi
@@ -272,7 +270,7 @@ mkdir_cmdline="mkdir -p ${DEX_LOCATION}/dalvik-cache/$ISA"
if [ "$PREBUILD" = "y" ]; then
dex2oat_cmdline="$INVOKE_WITH $ANDROID_ROOT/bin/dex2oatd \
$COMPILE_FLAGS \
- $DEX2OAT_BOOT_OPT \
+ --boot-image=${BOOT_IMAGE} \
--dex-file=$DEX_LOCATION/$TEST_NAME.jar \
--oat-file=$DEX_LOCATION/dalvik-cache/$ISA/$(echo $DEX_LOCATION/$TEST_NAME.jar/classes.dex | cut -d/ -f 2- | sed "s:/:@:g") \
--instruction-set=$ISA"