aboutsummaryrefslogtreecommitdiff
path: root/src/testzzuf/zzuf_test_runner.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/testzzuf/zzuf_test_runner.sh')
-rwxr-xr-xsrc/testzzuf/zzuf_test_runner.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testzzuf/zzuf_test_runner.sh b/src/testzzuf/zzuf_test_runner.sh
index 40367639..20cd8114 100755
--- a/src/testzzuf/zzuf_test_runner.sh
+++ b/src/testzzuf/zzuf_test_runner.sh
@@ -48,10 +48,10 @@ run_with_socat ()
48} 48}
49 49
50# zzuf cannot pass-through the return value of checked program 50# zzuf cannot pass-through the return value of checked program
51# so try the direct dry-run first to get possibe 77 or 99 codes 51# so try the direct dry-run first to get possible 77 or 99 codes
52echo "## Dry-run of the $@..." 52echo "## Dry-run of the $@..."
53if "$@" --dry-run ; then 53if "$@" --dry-run ; then
54 echo "# Dry-run succeded." 54 echo "# Dry-run succeeded."
55else 55else
56 res_code=$? 56 res_code=$?
57 echo "Dry-run failed with exit code $res_code." 1>&2 57 echo "Dry-run failed with exit code $res_code." 1>&2
@@ -81,7 +81,7 @@ fi
81 81
82echo "## Dry-run of the $@ with zzuf..." 82echo "## Dry-run of the $@ with zzuf..."
83if "$ZZUF" ${zzuf_all_params} "$@" --dry-run ; then 83if "$ZZUF" ${zzuf_all_params} "$@" --dry-run ; then
84 echo "# Dry-run with zzuf succeded." 84 echo "# Dry-run with zzuf succeeded."
85else 85else
86 res_code=$? 86 res_code=$?
87 echo "$@ cannot be run with zzuf directly." 1>&2 87 echo "$@ cannot be run with zzuf directly." 1>&2