Renamed tests for consistency

This commit is contained in:
Andrew Wood
2023-07-23 11:41:56 +01:00
parent c7e0bb727e
commit ee3c02fd7f
17 changed files with 0 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/sh
#
# Check that the byte counter counts.
dd if=/dev/zero bs=100 count=1 2>/dev/null \
| LANG=C $PROG -f -b >/dev/null 2>$TMP1
NUM=$(tr '\r' '\n' < $TMP1 | tr -d ' ')
test "$NUM" = "100B"
# EOF