Add test-art-host-interpreter-run-test build rule.

Runs all the run-tests on the host using the interpreter.

Change-Id: I0dd3a23b80122aac2373d629d7c809aca98ca82e
diff --git a/Android.mk b/Android.mk
index 162becb..3a4ff79 100644
--- a/Android.mk
+++ b/Android.mk
@@ -176,6 +176,13 @@
 	@echo test-art-host-run-test-$(1) PASSED
 
 TEST_ART_HOST_RUN_TEST_TARGETS += test-art-host-run-test-$(1)
+
+.PHONY: test-art-host-interpreter-run-test-$(1)
+test-art-host-interpreter-run-test-$(1): test-art-host-dependencies
+	art/test/run-test --host --interpreter $(1)
+	@echo test-art-host-interpreter-run-test-$(1) PASSED
+
+TEST_ART_HOST_INTERPRETER_RUN_TEST_TARGETS += test-art-host-interpreter-run-test-$(1)
 endef
 
 $(foreach test, $(wildcard art/test/[0-9]*), $(eval $(call declare-test-art-host-run-test,$(notdir $(test)))))
@@ -184,6 +191,10 @@
 test-art-host-run-test: $(TEST_ART_HOST_RUN_TEST_TARGETS)
 	@echo test-art-host-run-test PASSED
 
+.PHONY: test-art-host-interpreter-run-test
+test-art-host-interpreter-run-test: $(TEST_ART_HOST_INTERPRETER_RUN_TEST_TARGETS)
+	@echo test-art-host-interpreter-run-test PASSED
+
 ########################################################################
 # target test targets