randconfig fixes
authorDenys Vlasenko <vda.linux@googlemail.com>
Sun, 11 Oct 2015 14:27:55 +0000 (16:27 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sun, 11 Oct 2015 14:27:55 +0000 (16:27 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
scripts/randomtest
testsuite/bzcat.tests
testsuite/pwd/pwd-prints-working-directory
testsuite/readlink.tests

index d2b26bc76f73f2b8e1d015dbea6dc7ea808e0e28..e2513d058b76288105432e0a5c99fe77f82f32d4 100755 (executable)
@@ -65,14 +65,16 @@ if test x"$LIBC" = x"uclibc"; then
        | grep -v CONFIG_BUILD_LIBBUSYBOX \
        | grep -v CONFIG_PIE \
        \
-       | grep -v CONFIG_FEATURE_TOUCH_NODEREF \
        | grep -v CONFIG_FEATURE_2_4_MODULES \
+       | grep -v CONFIG_FEATURE_SYNC_FANCY \
+       | grep -v CONFIG_FEATURE_TOUCH_NODEREF \
        >.config.new
        mv .config.new .config
        echo 'CONFIG_STATIC=y' >>.config
        echo '# CONFIG_BUILD_LIBBUSYBOX is not set' >>.config
        echo '# CONFIG_PIE is not set' >>.config
        echo '# CONFIG_FEATURE_2_4_MODULES is not set' >>.config
+       echo '# CONFIG_FEATURE_SYNC_FANCY is not set' >>.config
        echo '# CONFIG_FEATURE_TOUCH_NODEREF is not set' >>.config
 fi
 
index 9a1c28425a214521e1409fb2efbddd8b129a5a1c..2b38472ee06d62a61c08b544c31c40a1f524bf20 100755 (executable)
@@ -28,7 +28,10 @@ hello_bz2() {
     $ECHO -ne "\x17\x72\x45\x38\x50\x90\x5b\xb8\xe8\xa3"
 }
 
-for ext in gz bz2 Z
+for ext in \
+    `test x"$CONFIG_GUNZIP=y = x"y" && echo gz` \
+    `test x"$CONFIG_BUNZIP2=y = x"y" && echo bz2` \
+    `test x"$CONFIG_UNCOMPRESS" = x"y" && echo Z`
 do
     prep() {
        rm -f t1.$ext t2.$ext t_actual
@@ -49,11 +52,12 @@ do
     mkdir testdir 2>/dev/null
     (
     cd testdir || { echo "cannot cd testdir!"; exit 1; }
-
     expected="HELLO\nok\n"
-    prep; check "zcat: dont delete $ext src" "${bb}zcat t2.$ext; test -f t2.$ext && echo ok"
-
+    prep
+    check "zcat: dont delete $ext src" "${bb}zcat t2.$ext; test -f t2.$ext && echo ok"
+    exit $FAILCOUNT
     )
+    FAILCOUNT=$?
     rm -rf testdir
 done
 
@@ -89,6 +93,7 @@ testing "bzcat can handle compressed zero-length bzip2 files" \
 ## compress algorithm
 
 # "input" file is compressed (.Z) file with "a\n" data
+test x"$CONFIG_UNCOMPRESS" = x"y" && \
 testing "zcat can print many files" \
 "$ECHO -ne '$hexdump' | zcat input input; echo \$?" \
 "\
@@ -100,7 +105,8 @@ a
 " ""
 
 # "input" file is compressed (.Z) zero byte file
-testing "zcat can handle compressed zero-length compressed (.Z) files" \
+test x"$CONFIG_UNCOMPRESS" = x"y" && \
+testing "zcat can handle compressed zero-length (.Z) files" \
 "$ECHO -ne '$hexdump' | zcat input input; echo \$?" \
 "0\n" \
 "\x1f\x9d\x90\x00" ""
index 8575347d6c02aeb912fe6c5c12f1d64ee9602711..971adb5a629ee0ece3bcd47fc2944766933c8d3b 100644 (file)
@@ -1 +1,4 @@
-test $(pwd) = $(busybox pwd)
+# shell's $PWD may leave symlinks unresolved.
+# "pwd" may be a built-in and have the same problem.
+# External pwd _can't_ have that problem (current dir on Unix is physical).
+test $(`which pwd`) = $(busybox pwd)
index c7fc8adf008d390c0e52071ae0506d574e630a8d..e9d8da0fc8d6f49d8f3ced9e399c4f04b7a68ff0 100755 (executable)
@@ -21,10 +21,15 @@ testing "readlink on a link" "readlink ./$TESTLINK" "./$TESTFILE\n" "" ""
 
 optional FEATURE_READLINK_FOLLOW
 
-testing "readlink -f on a file" "readlink -f ./$TESTFILE" "$PWD/$TESTFILE\n" "" ""
-testing "readlink -f on a link" "readlink -f ./$TESTLINK" "$PWD/$TESTFILE\n" "" ""
+# shell's $PWD may leave symlinks unresolved.
+# "pwd" may be a built-in and have the same problem.
+# External pwd _can't_ have that problem (current dir on Unix is physical).
+pwd=`which pwd`
+pwd=`$pwd`
+testing "readlink -f on a file" "readlink -f ./$TESTFILE" "$pwd/$TESTFILE\n" "" ""
+testing "readlink -f on a link" "readlink -f ./$TESTLINK" "$pwd/$TESTFILE\n" "" ""
 testing "readlink -f on an invalid link" "readlink -f ./$FAILLINK" "" "" ""
-testing "readlink -f on a wierd dir" "readlink -f $TESTDIR/../$TESTFILE" "$PWD/$TESTFILE\n" "" ""
+testing "readlink -f on a wierd dir" "readlink -f $TESTDIR/../$TESTFILE" "$pwd/$TESTFILE\n" "" ""
 
 
 # clean up