The Android.mk file in libcore was writing a test
file outside of the Android build directory and was
not getting cleaned up after the build.
diff --git a/Android.mk b/Android.mk
index b22b4c0..7de73be 100644
--- a/Android.mk
+++ b/Android.mk
@@ -51,7 +51,7 @@
# resource with a "#" in its name, but Perforce doesn't
# allow us to submit such a file. So we create it here
# on-the-fly.
-TMP_RESOURCE_DIR := /tmp/
+TMP_RESOURCE_DIR := $(OUT_DIR)/tmp/
TMP_RESOURCE_FILE := org/apache/harmony/luni/tests/java/lang/test\#.properties
$(TMP_RESOURCE_DIR)$(TMP_RESOURCE_FILE):