diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2014-06-18 16:07:49 +0100 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2014-06-18 16:07:49 +0100 |
commit | fe40874ee8359a12f5360d18e4943a091d960b49 (patch) | |
tree | fbb84a2f4de65af5fa9387683db6e7e1995a8d68 /Android.mk | |
parent | 7258eaa0c78d14c779231c025608dc617a6dca69 (diff) | |
download | art-fe40874ee8359a12f5360d18e4943a091d960b49.zip art-fe40874ee8359a12f5360d18e4943a091d960b49.tar.gz art-fe40874ee8359a12f5360d18e4943a091d960b49.tar.bz2 |
Add missing parens to Makefile rule.
Change-Id: I5bff24a696a07c734d05d0ee42f3cf6cd57c0904
Diffstat (limited to 'Android.mk')
-rw-r--r-- | Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -207,7 +207,7 @@ TEST_ART_HOST_RUN_TEST_DEFAULT_TARGETS += test-art-host-run-test-default-$(1) .PHONY: test-art-host-run-test-optimizing-$(1) test-art-host-run-test-optimizing-$(1): test-art-host-dependencies $(DX) $(HOST_OUT_EXECUTABLES)/jasmin DX=$(abspath $(DX)) JASMIN=$(abspath $(HOST_OUT_EXECUTABLES)/jasmin) art/test/run-test -Xcompiler-option --compiler-backend=Optimizing $(addprefix --runtime-option ,$(DALVIKVM_FLAGS)) --host $(1) \ - || echo -e "\x1b[31;01mTest $(1) $(FAILING_OPTIMIZING_MESSAGE)\x1b[0m" && exit 1 + || (echo -e "\x1b[31;01mTest $(1) $(FAILING_OPTIMIZING_MESSAGE)\x1b[0m" && exit 1) @echo test-art-host-run-test-optimizing-$(1) PASSED TEST_ART_HOST_RUN_TEST_OPTIMIZING_TARGETS += test-art-host-run-test-optimizing-$(1) |