1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 18:56:39 +02:00

Use "cat", not "test", to test for

../../src/dd.  Problem reported by Eric Blake.
This commit is contained in:
Paul Eggert
2005-04-18 18:37:36 +00:00
parent 60910381af
commit 17d40155b4

View File

@@ -8,7 +8,9 @@ fi
dir=dir
file=file
test -r ../../src/dd || {
# Skip this test if we're on a non-POSIX platform where executable's names end
# in .exe, or we have some other problem like that.
cat ../../src/dd > /dev/null || {
echo >&2 "$0: ../../src/dd is not readable, so can't run this test"
exit 77
}