1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 11:16:16 +02:00

Fix syntax in test: use =, not ==.

This commit is contained in:
Jim Meyering
2002-10-08 09:25:34 +00:00
parent 718b928df1
commit a890541a5d

View File

@@ -24,7 +24,7 @@ echo abcdefgh | tr -d '\n' > big || framework_failure=1
echo 87654321 | tr -d '\n' > tmp || framework_failure=1
# Seek 4GB - 8
dd bs=1 seek=4294967288 if=tmp of=big 2> err || framework_failure=1
test $framework_failure == 1 && cat err 1>&2
test $framework_failure = 1 && cat err 1>&2
if test $framework_failure = 1; then
echo "$0: failure in testing framework" 1>&2