randomconfig fixes
authorDenys Vlasenko <vda.linux@googlemail.com>
Tue, 23 Jun 2020 19:28:19 +0000 (21:28 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Tue, 23 Jun 2020 19:28:19 +0000 (21:28 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
editors/patch.c
include/libbb.h
libbb/duration.c
scripts/randomtest
testsuite/cpio.tests
testsuite/patch.tests

index 0ce0210fd09e885bb6f3e8a2cd9958e92d7fcd2d..aaa25359162da25d945e552701e9db36b14191a9 100644 (file)
@@ -264,7 +264,7 @@ static int apply_one_hunk(void)
                        if (!plist && matcheof) break;
 
                        if (backwarn)
-                               fdprintf(2,"Possibly reversed hunk %d at %ld\n",
+                               fdprintf(2, "Possibly reversed hunk %d at %ld\n",
                                        TT.hunknum, TT.linenum);
 
                        // File ended before we found a place for this hunk.
@@ -593,6 +593,7 @@ int patch_main(int argc UNUSED_PARAM, char **argv)
                                        TT.linenum = 0;
                                        TT.hunknum = 0;
                                }
+                               fflush_all(); // make "patching file F" visible
                        }
 
                        TT.hunknum++;
index d9858f5dfe34ec786f0adec54c1ac6f8cc6f6f03..6be934994499b969715b0cc7bd53aca4459cd439 100644 (file)
@@ -298,6 +298,7 @@ typedef unsigned long uoff_t;
 /* scary. better ideas? (but do *test* them first!) */
 #define OFF_T_MAX  ((off_t)~((off_t)1 << (sizeof(off_t)*8-1)))
 /* Users report bionic to use 32-bit off_t even if LARGEFILE support is requested.
+ * On musl, !ENABLE_LFS on 32-bit arches thinks that off_t is 32-bit.
  * We misdetected that. Don't let it build:
  */
 struct BUG_off_t_size_is_misdetected {
index 5acd0dba30a146d6551d4032eb1bf7e0c2213277..22b209f4d9555f7fad9b92b6661caf330de5ae76 100644 (file)
@@ -17,6 +17,7 @@
 //kbuild:lib-$(CONFIG_TIMEOUT) += duration.o
 //kbuild:lib-$(CONFIG_PING)    += duration.o
 //kbuild:lib-$(CONFIG_PING6)   += duration.o
+//kbuild:lib-$(CONFIG_WATCH)   += duration.o
 
 #include "libbb.h"
 
index 94709a99fe183fc591910ab69b970600066eb034..ec2f095b2530171868e450b2edadc2527788f9d1 100755 (executable)
@@ -113,6 +113,28 @@ if test x"$LIBC" = x"uclibc"; then
        echo 'CONFIG_ASH_INTERNAL_GLOB=y' >>.config
 fi
 
+# If musl
+if test x"$LIBC" = x"musl"; then
+       cat .config \
+       | grep -v CONFIG_STATIC \
+       | grep -v CONFIG_LFS \
+       | grep -v CONFIG_EXTRA_COMPAT \
+       | grep -v CONFIG_FEATURE_2_4_MODULES \
+       | grep -v CONFIG_FEATURE_VI_REGEX_SEARCH \
+       | grep -v CONFIG_FEATURE_MOUNT_NFS \
+       | grep -v CONFIG_FEATURE_INETD_RPC \
+       >.config.new
+       mv .config.new .config
+       echo 'CONFIG_STATIC=y' >>.config
+       # with LFS off, uoff_t will have wrong width:
+       echo 'CONFIG_LFS=y' >>.config
+       echo '# CONFIG_EXTRA_COMPAT is not set' >>.config
+       echo '# CONFIG_FEATURE_2_4_MODULES is not set' >>.config
+       echo '# CONFIG_FEATURE_VI_REGEX_SEARCH is not set' >>.config
+       echo '# CONFIG_FEATURE_MOUNT_NFS is not set' >>.config
+       echo '# CONFIG_FEATURE_INETD_RPC is not set' >>.config
+fi
+
 # If STATIC, remove some things.
 # PAM with static linking is probably pointless
 # (but I need to try - now I don't have libpam.a on my system, only libpam.so)
index 88ec086b6c8a5017b1cee938664540be9f875693..85e74658919984528ad03e409132ddeb7cfd3652 100755 (executable)
@@ -129,7 +129,7 @@ SKIP=
 
 optional FEATURE_CPIO_O
 testing "cpio uses by default uid/gid" \
-"echo $0 | cpio -o -H newc | cpio -tv 2>&1 | tail -n +2 | awk ' { print \$2 } '; echo \$?" \
+"echo $0 | cpio -o -H newc | cpio -tv 2>&1 | head -n1 | awk ' { print \$2 } '; echo \$?" \
 "\
 $user/$group
 0
@@ -138,7 +138,7 @@ SKIP=
 
 optional FEATURE_CPIO_O
 testing "cpio -R with create" \
-"echo $0 | cpio -o -H newc -R 1234:5678 | cpio -tv 2>&1 | tail -n +2 | awk ' { print \$2 } '; echo \$?" \
+"echo $0 | cpio -o -H newc -R 1234:5678 | cpio -tv 2>&1 | head -n1 | awk ' { print \$2 } '; echo \$?" \
 "\
 1234/5678
 0
@@ -147,7 +147,7 @@ SKIP=
 
 optional FEATURE_CPIO_O
 testing "cpio -R with extract" \
-"echo $0 | cpio -o -H newc | cpio -tv -R 8765:4321 2>&1 | tail -n +2 | awk ' { print \$2 } '; echo \$?" \
+"echo $0 | cpio -o -H newc | cpio -tv -R 8765:4321 2>&1 | head -n1 | awk ' { print \$2 } '; echo \$?" \
 "\
 8765/4321
 0
index 39205242c3d492a5ef6527e4426837ac8328a147..1d48e90be4e74546c55f90b0a79a41962cc94391 100755 (executable)
@@ -75,12 +75,12 @@ zxc
 testing "patch detects already applied hunk" \
        'patch 2>&1; echo $?; cat input' \
 "\
+patching file input
 Possibly reversed hunk 1 at 4
 Hunk 1 FAILED 1/1.
  abc
 +def
  123
-patching file input
 1
 abc
 def
@@ -103,12 +103,12 @@ def
 testing "patch detects already applied hunk at the EOF" \
        'patch 2>&1; echo $?; cat input' \
 "\
+patching file input
 Possibly reversed hunk 1 at 4
 Hunk 1 FAILED 1/1.
  abc
  123
 +456
-patching file input
 1
 abc
 123