summaryrefslogtreecommitdiff
path: root/test/tools_common.sh
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2014-05-21 19:54:48 -0700
committerJames Zern <jzern@google.com>2014-05-21 19:54:48 -0700
commit8188096640e843767efa11b7d66d37eede807072 (patch)
tree1cbcb169f31f1008047e31a92521cb618c3e4d72 /test/tools_common.sh
parent652a3cc29fcd1ca49161f49e7637805ab2f06f88 (diff)
downloadlibvpx-8188096640e843767efa11b7d66d37eede807072.tar
libvpx-8188096640e843767efa11b7d66d37eede807072.tar.gz
libvpx-8188096640e843767efa11b7d66d37eede807072.tar.bz2
libvpx-8188096640e843767efa11b7d66d37eede807072.zip
tools_common: fix test_name quoting
quoting within $() doesn't need to be escaped; removes trailing " in test_name Change-Id: I97ffad9fdfd97b3cdf4dec2a8547804875d85e66
Diffstat (limited to 'test/tools_common.sh')
-rwxr-xr-xtest/tools_common.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tools_common.sh b/test/tools_common.sh
index 472111c23..bb024291e 100755
--- a/test/tools_common.sh
+++ b/test/tools_common.sh
@@ -307,7 +307,7 @@ run_tests() {
local test_name="${VPX_TEST_NAME}"
if [ -z "${test_name}" ]; then
- test_name="$(basename \"${0%.*}\")"
+ test_name="$(basename "${0%.*}")"
fi
if [ "${VPX_TEST_RUN_DISABLED_TESTS}" != "yes" ]; then