diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-05-11 03:53:57 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-05-11 03:53:57 +0200 |
commit | bfa1b2e8e8aaddcf849011a12cb2ac634b27f339 (patch) | |
tree | 4a5fbaef1371fb8b2ca504e753fa2a31d25234d4 /testsuite/ar.tests | |
parent | 6334390aef2eb52cc827a6d18f942b2b8a04ef59 (diff) | |
download | busybox-w32-bfa1b2e8e8aaddcf849011a12cb2ac634b27f339.tar.gz busybox-w32-bfa1b2e8e8aaddcf849011a12cb2ac634b27f339.tar.bz2 busybox-w32-bfa1b2e8e8aaddcf849011a12cb2ac634b27f339.zip |
randomtest fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/ar.tests')
-rwxr-xr-x | testsuite/ar.tests | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/ar.tests b/testsuite/ar.tests index f112eb64a..4630d08a4 100755 --- a/testsuite/ar.tests +++ b/testsuite/ar.tests | |||
@@ -18,10 +18,10 @@ testing "ar creates archives" \ | |||
18 | rm test.a | 18 | rm test.a |
19 | 19 | ||
20 | testing "ar replaces things in archives" \ | 20 | testing "ar replaces things in archives" \ |
21 | "echo 'blah!' >file1 && echo 'blast!'> file2 && ar cr test.a README file1 file2 && mv file2 file1 && ar cr test.a file1 && ar p test.a file1" \ | 21 | "echo 'blah!' >file1 && echo 'blast!' >file2 && ar cr test.a README file1 file2 && mv file2 file1 && ar cr test.a file1 && ar p test.a file1" \ |
22 | "blast!\n" \ | 22 | "blast!\n" \ |
23 | "" \ | 23 | "" \ |
24 | "" | 24 | "" |
25 | rm test.a | 25 | rm test.a file1 file1 2>/dev/null |
26 | 26 | ||
27 | exit $FAILCOUNT | 27 | exit $FAILCOUNT |