diff options
author | 2016-09-07 16:02:15 +0100 | |
---|---|---|
committer | 2016-09-09 14:12:37 +0100 | |
commit | 8c9ccac080e98fc5f33ba940a1216e9c2cc079db (patch) | |
tree | 1624ccde9bc6b751c01e0b0080075e0b6d0db22e /build/Android.common_test.mk | |
parent | b0f443217306b8a307f73d35cb27c1cac2e1c360 (diff) |
Cleanup run-test and Makefile around boot image and PIC.
- JIT boot image is interpret-only
- Default is PIC image
- "Default" compiler is gone.
test: m -j32 test-art-host-run-test (with different macro variants)
Change-Id: I547f4579fa08bbcb634b256125ca45d832dc1d6b
Diffstat (limited to 'build/Android.common_test.mk')
-rw-r--r-- | build/Android.common_test.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/Android.common_test.mk b/build/Android.common_test.mk index 93e310e0eb..6b7dc0932e 100644 --- a/build/Android.common_test.mk +++ b/build/Android.common_test.mk @@ -60,8 +60,8 @@ ART_TEST_OPTIMIZING ?= true # Do you want to test the optimizing compiler with graph coloring register allocation? ART_TEST_OPTIMIZING_GRAPH_COLOR ?= $(ART_TEST_FULL) -# Do we want to test a PIC-compiled core image? -ART_TEST_PIC_IMAGE ?= $(ART_TEST_FULL) +# Do we want to test a non-PIC-compiled core image? +ART_TEST_NPIC_IMAGE ?= $(ART_TEST_FULL) # Do we want to test PIC-compiled tests ("apps")? ART_TEST_PIC_TEST ?= $(ART_TEST_FULL) |