diff options
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 449502c771..06485ca904 100644 --- a/build/Android.common_test.mk +++ b/build/Android.common_test.mk @@ -21,9 +21,9 @@ include art/build/Android.common_path.mk # Directory used for temporary test files on the host. ifneq ($(TMPDIR),) -ART_HOST_TEST_DIR := $(TMPDIR)/test-art-$(shell echo $$PPID) +ART_HOST_TEST_DIR := $(TMPDIR)/test-art-$$(echo $$PPID) else -ART_HOST_TEST_DIR := /tmp/$(USER)/test-art-$(shell echo $$PPID) +ART_HOST_TEST_DIR := /tmp/$(USER)/test-art-$$(echo $$PPID) endif # List of known broken tests that we won't attempt to execute. The test name must be the full |