Fix shellcheck warning in fuzz_static_testcases.sh

This commit is contained in:
rl1987 2019-02-02 17:14:49 +02:00
parent bfd1d70243
commit daff9e1ba1
2 changed files with 4 additions and 1 deletions

3
changes/ticket29059 Normal file
View File

@ -0,0 +1,3 @@
o Code simplification and refactoring (shell scripts):
- Fix shellcheck warnings in fuzz_static_testcases.sh. Resolves ticket
29059.

View File

@ -14,7 +14,7 @@ fi
for fuzzer in "${builddir:-.}"/src/test/fuzz/fuzz-* ; do
f=`basename $fuzzer`
f=$(basename "$fuzzer")
case="${f#fuzz-}"
if [ -d "${TOR_FUZZ_CORPORA}/${case}" ]; then
echo "Running tests for ${case}"