summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2017-03-07 10:22:19 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-03-07 10:22:21 +0000
commitec577e766b22da893ff975271b0a978ad6f944d9 (patch)
tree5affb1598e983d35ad777dd96fc04b089af084e4
parentacd764a6f196a6704553d3db66fc3e2281879637 (diff)
parentbea3e3173aefe1b57473632788cf531404bc2371 (diff)
Merge "Add the test name that is too long for diagnosing issues."
-rwxr-xr-xtest/etc/run-test-jar3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/etc/run-test-jar b/test/etc/run-test-jar
index 0ac5481f6d..fb005984d0 100755
--- a/test/etc/run-test-jar
+++ b/test/etc/run-test-jar
@@ -505,7 +505,8 @@ fi
DEX_LOCATION_STRIPPED="${DEX_LOCATION#/}"
VDEX_NAME="${DEX_LOCATION_STRIPPED//\//@}@$TEST_NAME.jar@classes.vdex"
if [ ${#VDEX_NAME} -gt $max_filename_size ]; then
- echo "Dex location path too long."
+ echo "Dex location path too long:"
+ echo "$VDEX_NAME is ${#VDEX_NAME} character long, and the limit is $max_filename_size."
exit 1
fi