diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-24 23:33:06 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-24 23:33:06 +0100 |
commit | 2315c8854c2be911283c5b4b7eb3f37332758abb (patch) | |
tree | 9ba57cf0baf9144929c274c33a3ec1d3a36c1350 | |
parent | 6b01b71e8370c58787318d5fca06db2074f95c55 (diff) | |
download | busybox-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-x | scripts/randomtest | 11 |
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 |
30 | mv .config.new .config | 30 | mv .config.new .config |
31 | echo CONFIG_WERROR=y >>.config | 31 | #echo CONFIG_WERROR=y >>.config |
32 | echo '# CONFIG_WERROR is not set' >>.config | ||
32 | 33 | ||
33 | test "$libc" = glibc && { | 34 | test "$libc" = glibc && { |
34 | cat .config \ | 35 | cat .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 |
39 | mv .config.new .config | 41 | mv .config.new .config |
42 | echo '# CONFIG_STATIC is not set' >>.config | ||
40 | } | 43 | } |
41 | 44 | ||
42 | test "$libc" = uclibc && { | 45 | test "$libc" = uclibc && { |