diff options
author | rl1987 <rl1987@sdf.lonestar.org> | 2019-04-12 22:41:39 +0300 |
---|---|---|
committer | rl1987 <rl1987@sdf.lonestar.org> | 2019-04-12 22:41:39 +0300 |
commit | 4fa4fe09453c2363d6a939482459a1fbe27ea6b4 (patch) | |
tree | 668538c7a6976bbf9fcddc4405f9a4a79eac5a3f | |
parent | 1ee991ed4b65767f1a82e23191271fa9183d847f (diff) | |
download | tor-4fa4fe09453c2363d6a939482459a1fbe27ea6b4.tar.gz tor-4fa4fe09453c2363d6a939482459a1fbe27ea6b4.zip |
Fix remaining shellcheck warnings in fuzz_multi.sh
-rwxr-xr-x | src/test/fuzz/fuzz_multi.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/fuzz/fuzz_multi.sh b/src/test/fuzz/fuzz_multi.sh index b7f59512db..406ab498d9 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="" |