tools_common: fix test_name quoting
quoting within $() doesn't need to be escaped; removes trailing " in test_name Change-Id: I97ffad9fdfd97b3cdf4dec2a8547804875d85e66
This commit is contained in:
Родитель
652a3cc29f
Коммит
8188096640
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче