aboutsummaryrefslogtreecommitdiff
path: root/android/test-shell.sh
diff options
context:
space:
mode:
Diffstat (limited to 'android/test-shell.sh')
-rwxr-xr-xandroid/test-shell.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/android/test-shell.sh b/android/test-shell.sh
index 526e926a..3677d875 100755
--- a/android/test-shell.sh
+++ b/android/test-shell.sh
@@ -52,8 +52,9 @@ if [ ! -f "$TEST_PROGRAM" ]; then
fi
# Create test directory on the device
-TEST_DIR=/data/local/tmp/test-google-breakpad
-adb_shell mkdir "$TEST_DIR" || panic "Can't create test directory on device"
+TEST_DIR=/data/local/tmp/test-google-breakpad-$$
+adb_shell mkdir "$TEST_DIR" ||
+ panic "Can't create test directory on device: $TEST_DIR"
# Ensure that it is always removed when the script exits.
clean_test_dir () {