Magellan Linux

Contents of /trunk/mkinitrd-magellan/busybox/testsuite/ar.tests

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1123 - (show annotations) (download)
Wed Aug 18 21:56:57 2010 UTC (13 years, 9 months ago) by niro
File size: 727 byte(s)
-updated to busybox-1.17.1
1 #!/bin/sh
2 # Copyright 2010 Nokia Corporation
3 # Written by Alexander Shishkin
4 # Licensed under GPL v2 or later, see file LICENSE for details
5
6 . ./testing.sh
7
8 # testing "test name" "command(s)" "expected result" "file input" "stdin"
9
10 optional FEATURE_AR_CREATE
11
12 rm test.a 2>/dev/null
13 testing "ar creates archives" \
14 "ar rc test.a README && ar p test.a README | md5sum" \
15 "$(md5sum <README)\n" \
16 "" \
17 ""
18 rm test.a
19
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" \
22 "blast!\n" \
23 "" \
24 ""
25 rm test.a file1 file1 2>/dev/null
26
27 exit $FAILCOUNT