
Remove dist check on the CI, since it doesn't really add anything in the Meson case (tarball is based on files checked into git and srcdir != builddir).
15 lines
200 B
Bash
Executable file
15 lines
200 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
TEST_PSEUDOTCP="$1"
|
|
|
|
cleanup() {
|
|
rm -rf rand rand-copy
|
|
}
|
|
|
|
trap cleanup EXIT
|
|
|
|
dd if=/dev/urandom of=rand count=1024 ibs=1024
|
|
"${TEST_PSEUDOTCP}" rand rand-copy
|
|
diff rand rand-copy
|