commit 4fa4fe09453c2363d6a939482459a1fbe27ea6b4 Author: rl1987 rl1987@sdf.lonestar.org Date: Fri Apr 12 22:41:39 2019 +0300
Fix remaining shellcheck warnings in fuzz_multi.sh --- src/test/fuzz/fuzz_multi.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/test/fuzz/fuzz_multi.sh b/src/test/fuzz/fuzz_multi.sh index b7f59512d..406ab498d 100755 --- a/src/test/fuzz/fuzz_multi.sh +++ b/src/test/fuzz/fuzz_multi.sh @@ -8,9 +8,9 @@ if [ $# -ge 1 ]; then shift fi
-FILTER=echo +FILTER="echo"
-for i in `seq -w "$N_CPUS"`; do +for i in $(seq -w "$N_CPUS"); do if [ "$i" -eq 1 ]; then if [ "$N_CPUS" -eq 1 ]; then INSTANCE=""
tor-commits@lists.torproject.org