2010-03-15 20:08:09 +05:30
|
|
|
#!/bin/sh
|
|
|
|
# Copyright 2010 Nokia Corporation
|
|
|
|
# Written by Alexander Shishkin
|
|
|
|
# Licensed under GPL v2 or later, see file LICENSE for details
|
|
|
|
|
|
|
|
. ./testing.sh
|
|
|
|
|
|
|
|
# testing "test name" "command(s)" "expected result" "file input" "stdin"
|
|
|
|
|
|
|
|
optional FEATURE_AR_CREATE
|
|
|
|
|
|
|
|
rm test.a 2>/dev/null
|
|
|
|
testing "ar creates archives" \
|
|
|
|
"ar rc test.a README && ar p test.a README | md5sum" \
|
|
|
|
"$(md5sum <README)\n" \
|
|
|
|
"" \
|
|
|
|
""
|
|
|
|
rm test.a
|
|
|
|
|
|
|
|
testing "ar replaces things in archives" \
|
2010-05-11 07:23:57 +05:30
|
|
|
"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" \
|
2010-03-15 20:08:09 +05:30
|
|
|
"blast!\n" \
|
|
|
|
"" \
|
|
|
|
""
|
2010-05-11 07:23:57 +05:30
|
|
|
rm test.a file1 file1 2>/dev/null
|
2010-03-15 20:08:09 +05:30
|
|
|
|
|
|
|
exit $FAILCOUNT
|