scripts/randomtest: tweaks for non-eliminable warnings and broken static glibc

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2010-01-24 23:33:06 +01:00
parent 6b01b71e83
commit 2315c8854c

View File

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