aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-01-24 23:33:06 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-01-24 23:33:06 +0100
commit2315c8854c2be911283c5b4b7eb3f37332758abb (patch)
tree9ba57cf0baf9144929c274c33a3ec1d3a36c1350
parent6b01b71e8370c58787318d5fca06db2074f95c55 (diff)
downloadbusybox-w32-2315c8854c2be911283c5b4b7eb3f37332758abb.tar.gz
busybox-w32-2315c8854c2be911283c5b4b7eb3f37332758abb.tar.bz2
busybox-w32-2315c8854c2be911283c5b4b7eb3f37332758abb.zip
scripts/randomtest: tweaks for non-eliminable warnings and broken static glibc
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rwxr-xr-xscripts/randomtest11
1 files changed, 7 insertions, 4 deletions
diff --git a/scripts/randomtest b/scripts/randomtest
index a7a20250d..2a30cb638 100755
--- a/scripts/randomtest
+++ b/scripts/randomtest
@@ -28,15 +28,18 @@ cat .config \
28| grep -v CONFIG_WERROR \ 28| grep -v CONFIG_WERROR \
29| cat >.config.new 29| cat >.config.new
30mv .config.new .config 30mv .config.new .config
31echo CONFIG_WERROR=y >>.config 31#echo CONFIG_WERROR=y >>.config
32echo '# CONFIG_WERROR is not set' >>.config
32 33
33test "$libc" = glibc && { 34test "$libc" = glibc && {
34cat .config \ 35cat .config \
35| grep -v ^CONFIG_SELINUX= \ 36| grep -v CONFIG_STATIC \
36| grep -v ^CONFIG_EFENCE= \ 37| grep -v CONFIG_SELINUX \
37| grep -v ^CONFIG_DMALLOC= \ 38| grep -v CONFIG_EFENCE \
39| grep -v CONFIG_DMALLOC \
38| cat >.config.new 40| cat >.config.new
39mv .config.new .config 41mv .config.new .config
42echo '# CONFIG_STATIC is not set' >>.config
40} 43}
41 44
42test "$libc" = uclibc && { 45test "$libc" = uclibc && {