diff options
author | Denys Vlasenko | 2010-01-17 19:08:39 +0100 |
---|---|---|
committer | Denys Vlasenko | 2010-01-17 19:08:39 +0100 |
commit | 96a6bdcb7764a5616f2b9759226d1097ab489615 (patch) | |
tree | 7466c79af1d64dc4f6ec09c20a6128e17fdcf34d /testsuite/bunzip2.tests | |
parent | 57f46c1afd28551d8446b80b6e325d67eb44135c (diff) | |
download | busybox-96a6bdcb7764a5616f2b9759226d1097ab489615.zip busybox-96a6bdcb7764a5616f2b9759226d1097ab489615.tar.gz |
bunzip2.tests: replace $? with \$?
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/bunzip2.tests')
-rwxr-xr-x | testsuite/bunzip2.tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/bunzip2.tests b/testsuite/bunzip2.tests index 7875cd1..734acbb 100755 --- a/testsuite/bunzip2.tests +++ b/testsuite/bunzip2.tests @@ -504,7 +504,7 @@ prep; >t1; check "$unpack: already exists" "${bb}$unpack t1.$ext t2.$ext; echo \ # From old testsuite expected="HELLO\n0\n" -prep; check "$unpack: stream unpack" "cat t1.$ext | ${bb}$unpack; echo $?" +prep; check "$unpack: stream unpack" "cat t1.$ext | ${bb}$unpack; echo \$?" expected="ok\n" prep; check "$unpack: delete src" "${bb}$unpack t2.$ext; test ! -f t2.$ext && echo ok" |