diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2020-06-24 00:27:37 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2020-06-24 00:27:37 +0200 |
commit | 7c443d110d4dc51ba48bad8ed1427716b754bf2e (patch) | |
tree | a233fcb29ef534eda8b3d2c18459399aeeb1234d /scripts/randomtest | |
parent | 5fa5c4bde8b9ab75fa0ed37ee2fafca3fd46288a (diff) | |
download | busybox-w32-7c443d110d4dc51ba48bad8ed1427716b754bf2e.tar.gz busybox-w32-7c443d110d4dc51ba48bad8ed1427716b754bf2e.tar.bz2 busybox-w32-7c443d110d4dc51ba48bad8ed1427716b754bf2e.zip |
randomconfig fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'scripts/randomtest')
-rwxr-xr-x | scripts/randomtest | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/randomtest b/scripts/randomtest index ec2f095b2..76550d267 100755 --- a/scripts/randomtest +++ b/scripts/randomtest | |||
@@ -117,6 +117,7 @@ fi | |||
117 | if test x"$LIBC" = x"musl"; then | 117 | if test x"$LIBC" = x"musl"; then |
118 | cat .config \ | 118 | cat .config \ |
119 | | grep -v CONFIG_STATIC \ | 119 | | grep -v CONFIG_STATIC \ |
120 | | grep -v CONFIG_DEBUG_SANITIZE \ | ||
120 | | grep -v CONFIG_LFS \ | 121 | | grep -v CONFIG_LFS \ |
121 | | grep -v CONFIG_EXTRA_COMPAT \ | 122 | | grep -v CONFIG_EXTRA_COMPAT \ |
122 | | grep -v CONFIG_FEATURE_2_4_MODULES \ | 123 | | grep -v CONFIG_FEATURE_2_4_MODULES \ |
@@ -126,6 +127,8 @@ if test x"$LIBC" = x"musl"; then | |||
126 | >.config.new | 127 | >.config.new |
127 | mv .config.new .config | 128 | mv .config.new .config |
128 | echo 'CONFIG_STATIC=y' >>.config | 129 | echo 'CONFIG_STATIC=y' >>.config |
130 | # "error: cannot specify -static with -fsanitize=address": | ||
131 | echo '# CONFIG_DEBUG_SANITIZE is not set' >>.config | ||
129 | # with LFS off, uoff_t will have wrong width: | 132 | # with LFS off, uoff_t will have wrong width: |
130 | echo 'CONFIG_LFS=y' >>.config | 133 | echo 'CONFIG_LFS=y' >>.config |
131 | echo '# CONFIG_EXTRA_COMPAT is not set' >>.config | 134 | echo '# CONFIG_EXTRA_COMPAT is not set' >>.config |