diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-03 02:33:08 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-03 02:33:08 +0200 |
commit | 7fdb764e2e12119949cc17046d5ad4a13a9be4c6 (patch) | |
tree | 0358a8886ef7b4f3601e38fc2f5c9d9f6f70af22 /scripts | |
parent | 4ee824f6ba3f35228f1c48e21681aa532a7dc23f (diff) | |
download | busybox-7fdb764e2e12119949cc17046d5ad4a13a9be4c6.tar.gz |
scripts/randomtest: update things which can't be tested on uclibc
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/randomtest | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/randomtest b/scripts/randomtest index 287f1c771..1809838a4 100755 --- a/scripts/randomtest +++ b/scripts/randomtest @@ -82,6 +82,9 @@ if test x"$LIBC" = x"uclibc"; then | grep -v CONFIG_BLKDISCARD \ | grep -v CONFIG_NSENTER \ | grep -v CONFIG_UNSHARE \ + | grep -v CONFIG_FALLOCATE \ + | grep -v CONFIG_UDHCPC6 \ + | grep -v CONFIG_ASH_INTERNAL_GLOB \ >.config.new mv .config.new .config echo 'CONFIG_STATIC=y' >>.config @@ -96,6 +99,9 @@ if test x"$LIBC" = x"uclibc"; then echo '# CONFIG_BLKDISCARD is not set' >>.config echo '# CONFIG_NSENTER is not set' >>.config echo '# CONFIG_UNSHARE is not set' >>.config + echo '# CONFIG_FALLOCATE is not set' >>.config + echo '# CONFIG_UDHCPC6 is not set' >>.config + echo 'CONFIG_ASH_INTERNAL_GLOB=y' >>.config fi # If STATIC, remove some things. |