]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Fix syntax in test: use =, not ==.
authorJim Meyering <jim@meyering.net>
Tue, 8 Oct 2002 09:25:34 +0000 (09:25 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 8 Oct 2002 09:25:34 +0000 (09:25 +0000)
tests/tail-2/big-4gb

index ac963c462df0b80e88f0102c4167ddf8894aad4c..70760256e9a5696c52c610e44b8d058bef4c7b06 100755 (executable)
@@ -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