scripts/randomtest: tweaks for non-eliminable warnings and broken static glibc
authorDenys Vlasenko <vda.linux@googlemail.com>
Sun, 24 Jan 2010 22:33:06 +0000 (23:33 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sun, 24 Jan 2010 22:33:06 +0000 (23:33 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
scripts/randomtest

index a7a2025..2a30cb6 100755 (executable)
@@ -28,15 +28,18 @@ cat .config \
 | grep -v CONFIG_WERROR \
 | cat >.config.new
 mv .config.new .config
-echo CONFIG_WERROR=y >>.config
+#echo CONFIG_WERROR=y >>.config
+echo '# CONFIG_WERROR is not set' >>.config
 
 test "$libc" = glibc && {
 cat .config \
-| grep -v ^CONFIG_SELINUX= \
-| grep -v ^CONFIG_EFENCE= \
-| grep -v ^CONFIG_DMALLOC= \
+| grep -v CONFIG_STATIC \
+| grep -v CONFIG_SELINUX \
+| grep -v CONFIG_EFENCE \
+| grep -v CONFIG_DMALLOC \
 | cat >.config.new
 mv .config.new .config
+echo '# CONFIG_STATIC is not set' >>.config
 }
 
 test "$libc" = uclibc && {