aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland Levillain <rpl@google.com>2019-11-05 01:13:22 -0800
committerandroid-build-merger <android-build-merger@google.com>2019-11-05 01:13:22 -0800
commit56747457e45ed09580c3368407a494a194383e56 (patch)
treeab61384fcd925682a2cbd90f47cb0f4bacf1ac87
parent208ddbeec25ba11f93eba2a7fcb3ffac257ba1c3 (diff)
parentabdd61c2186efa8110ab659458adb77a4c26c134 (diff)
downloadvogar-56747457e45ed09580c3368407a494a194383e56.tar.gz
Fix Make target `run-vogar-tests`. am: bb47253f82
am: abdd61c218 Change-Id: I1162c5f97f09333acb6717f9eb56a3a195b70432
-rw-r--r--Android.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index 8f07553..8505d51 100644
--- a/Android.mk
+++ b/Android.mk
@@ -49,7 +49,8 @@ include $(BUILD_HOST_JAVA_LIBRARY)
# Run the tests using using the following target.
.PHONY: run-vogar-tests
run-vogar-tests: vogar-tests
- java -cp ./out/host/linux-x86/framework/vogar-tests.jar \
+ ANDROID_BUILD_TOP=$$(pwd) \
+ java -cp ./out/host/linux-x86/framework/vogar-tests.jar \
org.junit.runner.JUnitCore vogar.AllTests
include $(CLEAR_VARS)