diff options
-rw-r--r-- | build/Android.common_test.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build/Android.common_test.mk b/build/Android.common_test.mk index 0f29f2901b..3d1f4343f1 100644 --- a/build/Android.common_test.mk +++ b/build/Android.common_test.mk @@ -23,10 +23,10 @@ include art/build/Android.common_path.mk ifneq ($(TMPDIR),) ART_HOST_TEST_DIR := $(TMPDIR)/test-art-$(shell echo $$PPID) else -# Use a BSD checksum calculated from ANDROID_BUILD_TOP and USER as one of the -# path components for the test output. This should allow us to run tests from multiple -# repositories at the same time. -ART_HOST_TEST_DIR := /tmp/test-art-$(shell echo ${ANDROID_BUILD_TOP}-${USER} | sum | cut -d ' ' -f1) +# Use a BSD checksum calculated from PPID and USER as one of the path +# components for the test output. This should allow us to run tests from +# multiple repositories at the same time. +ART_HOST_TEST_DIR := /tmp/test-art-$(shell echo $$PPID-${USER} | sum | cut -d ' ' -f1) endif # List of known broken tests that we won't attempt to execute. The test name must be the full |