mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Merge remote-tracking branch 'tor-github/pr/942'
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
o Code simplification and refactoring (shell scripts):
|
||||
- Fix shellcheck warnings in fuzz_multi.sh. Resolves issue 30077.
|
||||
@@ -1,3 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
MEMLIMIT_BYTES=21990500990976
|
||||
|
||||
N_CPUS=1
|
||||
@@ -6,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=""
|
||||
|
||||
Reference in New Issue
Block a user