30 lines
885 B
Bash
Executable File
30 lines
885 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Make sure -S stops at the given size.
|
|
|
|
# Allow all tests to be skipped, e.g. during a release build
|
|
test "${SKIP_ALL_TESTS}" = "1" && exit 77
|
|
|
|
true "${testSubject:?not set - call this from 'make check'}"
|
|
true "${workFile1:?not set - call this from 'make check'}"
|
|
true "${workFile2:?not set - call this from 'make check'}"
|
|
|
|
# generate some data
|
|
dd if=/dev/urandom of="${workFile1}" bs=1024 count=10 2>/dev/null
|
|
|
|
# read through pv and test afterwards
|
|
"${testSubject}" -S -s 5120 -q "${workFile1}" > "${workFile2}"
|
|
|
|
outputChecksum=$(cksum "${workFile2}" | awk '{print $1}')
|
|
|
|
# take the first 5120 bytes of workFile1 and cksum them
|
|
dd if="${workFile1}" of="${workFile2}" bs=1024 count=5 2>/dev/null
|
|
inputChecksum=$(cksum "${workFile2}" | awk '{print $1}')
|
|
|
|
if ! test "${inputChecksum}" = "${outputChecksum}"; then
|
|
echo "input and output checksums differ"
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|