diff options
Diffstat (limited to 'test')
| -rwxr-xr-x | test/etc/run-test-jar | 3 |
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 |