diff options
author | Denys Vlasenko | 2010-05-10 05:53:16 +0200 |
---|---|---|
committer | Denys Vlasenko | 2010-05-10 05:53:16 +0200 |
commit | e3d90a90d43b857a5305808560d485b030a15c0a (patch) | |
tree | c731624c6ac8755ae485f600235d4b29ff337582 /testsuite/awk.tests | |
parent | 1602a5cdb9b68aec34389961b1c1d134d8b59d07 (diff) | |
download | busybox-e3d90a90d43b857a5305808560d485b030a15c0a.zip busybox-e3d90a90d43b857a5305808560d485b030a15c0a.tar.gz |
randomconfig testsuite fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/awk.tests')
-rwxr-xr-x | testsuite/awk.tests | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuite/awk.tests b/testsuite/awk.tests index 3a7c8f4..5dea2e9 100755 --- a/testsuite/awk.tests +++ b/testsuite/awk.tests @@ -33,12 +33,14 @@ testing "awk long field sep" "awk -F-- '{ print NF, length(\$NF), \$NF }'" \ testing "awk gsub falls back to non-extended-regex" \ "awk 'gsub(\"@(samp|code|file)\{\",\"\");'; echo \$?" "0\n" "" "Hi\n" -tar xjf awk_t1.tar.bz2 +optional FEATURE_SEAMLESS_BZ2 +test x"$SKIP" != x"1" && tar xjf awk_t1.tar.bz2 testing "awk 'gcc build bug'" \ "awk -f awk_t1_opt-functions.awk -f awk_t1_opth-gen.awk <awk_t1_input | md5sum" \ "f842e256461a5ab1ec60b58d16f1114f -\n" \ "" "" -rm -rf awk_t1_* +rm -rf awk_t1_* 2>/dev/null +SKIP= Q='":"' |