summaryrefslogtreecommitdiff
path: root/tests/tail-2/big-4gb
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-10-08 09:25:34 +0000
committerJim Meyering <jim@meyering.net>2002-10-08 09:25:34 +0000
commita890541a5d67d395e9f36aaaf5284457a03611f6 (patch)
treebd208657daa44d1781446945374b43499a8d2715 /tests/tail-2/big-4gb
parent718b928df162c5f67cd428ed44733971bb752965 (diff)
downloadcoreutils-a890541a5d67d395e9f36aaaf5284457a03611f6.tar.xz
Fix syntax in test: use =, not ==.
Diffstat (limited to 'tests/tail-2/big-4gb')
-rwxr-xr-xtests/tail-2/big-4gb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tail-2/big-4gb b/tests/tail-2/big-4gb
index ac963c462..70760256e 100755
--- a/tests/tail-2/big-4gb
+++ b/tests/tail-2/big-4gb
@@ -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