]> granicus.if.org Git - libvpx/commitdiff
tools_common: fix test_name quoting
authorJames Zern <jzern@google.com>
Thu, 22 May 2014 02:54:48 +0000 (19:54 -0700)
committerJames Zern <jzern@google.com>
Thu, 22 May 2014 02:54:48 +0000 (19:54 -0700)
quoting within $() doesn't need to be escaped; removes trailing " in
test_name

Change-Id: I97ffad9fdfd97b3cdf4dec2a8547804875d85e66

test/tools_common.sh

index 472111c2304068bb85d5b6429851197028cd7f12..bb024291e935faf84955e0f101cae1b68bd2e7f7 100755 (executable)
@@ -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