Rewrote most of run-test, and gave variables clearer names

This commit is contained in:
Andrew Wood
2023-07-23 14:54:45 +01:00
parent a0e5d5e9e7
commit b086ddf599
24 changed files with 245 additions and 178 deletions
+2 -2
View File
@@ -3,11 +3,11 @@
# Check that the progress bar moves when data is coming in.
dd if=/dev/zero bs=100 count=1 2>/dev/null \
| $PROG -f -p -i 0.1 -L 500 >/dev/null 2>$TMP1
| "${testSubject}" -f -p -i 0.1 -L 500 >/dev/null 2>"${workFile1}"
# There should be more than 2 different lines of output.
#
NUM=$(tr '\r' '\n' < $TMP1 | sort | uniq -u | wc -l | tr -d ' ')
NUM=$(tr '\r' '\n' < "${workFile1}" | sort | uniq -u | wc -l | tr -d ' ')
test $NUM -gt 2
# EOF