mirror of
https://github.com/cuberite/libdeflate.git
synced 2025-09-08 11:50:00 -04:00
scripts/exec_tests.sh: address shellcheck warnings
This commit is contained in:
parent
c509497a54
commit
57ddb0571c
@ -1,3 +1,4 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Helper script used by run_tests.sh, not intended to be run directly
|
||||
#
|
||||
@ -5,12 +6,12 @@
|
||||
set -eu
|
||||
|
||||
run_cmd() {
|
||||
echo "$WRAPPER $@"
|
||||
echo "$WRAPPER $*"
|
||||
$WRAPPER "$@" > /dev/null
|
||||
}
|
||||
|
||||
for prog in ./test_*; do
|
||||
run_cmd $prog
|
||||
run_cmd "$prog"
|
||||
done
|
||||
|
||||
for format in '' '-g' '-z'; do
|
||||
|
Loading…
x
Reference in New Issue
Block a user