* Don’t run the testsuite if /bin/cat is statically linked.

This commit is contained in:
Sam Hocevar
2007-01-07 12:06:07 +00:00
committed by sam
parent f109b99b53
commit 5d48434914

View File

@@ -61,6 +61,11 @@ else
fi
if [ ! -f "$FDCAT" -o ! -f "$STREAMCAT" ]; then
echo "error: test/fdcat or test/streamcat are missing"
exit 1
fi
if file /bin/cat | grep -q 'statically linked'; then
echo "error: /bin/cat is statically linked"
exit 1
fi
FAILED=0
TESTED=0