randomconfig fixes
[platform/upstream/busybox.git] / scripts / randomtest
1 #!/bin/sh
2
3 # Select which libc to build against
4 libc="glibc" # assumed native
5 # static, cross-compilation
6 libc="uclibc"
7 # x86 32-bit:
8 uclibc_cross="i486-linux-uclibc-"
9 # My system has strange prefix for x86 64-bit uclibc:
10 #uclibc_cross="x86_64-pc-linux-gnu-"
11
12 test -d tree || exit 1
13
14 dir=test.$$
15 while test -e "$dir" -o -e failed."$dir"; do
16     dir=test."$RANDOM"
17 done
18
19 cp -dpr tree "$dir" || exit 1
20 cd "$dir" || exit 1
21
22 echo "Running randconfig test in $dir..." >&2
23
24 make randconfig >/dev/null || exit 1
25
26 cat .config \
27 | grep -v ^CONFIG_DEBUG_PESSIMIZE= \
28 | grep -v CONFIG_WERROR \
29 | cat >.config.new
30 mv .config.new .config
31 echo CONFIG_WERROR=y >>.config
32
33 test "$libc" = glibc && {
34 cat .config \
35 | grep -v ^CONFIG_SELINUX= \
36 | grep -v ^CONFIG_EFENCE= \
37 | grep -v ^CONFIG_DMALLOC= \
38 | cat >.config.new
39 mv .config.new .config
40 }
41
42 test "$libc" = uclibc && {
43 cat .config \
44 | grep -v ^CONFIG_SELINUX= \
45 | grep -v ^CONFIG_EFENCE= \
46 | grep -v ^CONFIG_DMALLOC= \
47 | grep -v ^CONFIG_BUILD_LIBBUSYBOX= \
48 | grep -v ^CONFIG_PAM= \
49 | grep -v ^CONFIG_TASKSET= \
50 | grep -v ^CONFIG_FEATURE_ASSUME_UNICODE= \
51 | grep -v ^CONFIG_PIE= \
52 | grep -v CONFIG_STATIC \
53 | grep -v CONFIG_CROSS_COMPILER_PREFIX \
54 | cat >.config.new
55 mv .config.new .config
56 echo 'CONFIG_CROSS_COMPILER_PREFIX="'"$uclibc_cross"'"' >>.config
57 echo 'CONFIG_STATIC=y' >>.config
58 }
59
60 # If STATIC, remove some things
61 # PAM with static linking is probably pointless
62 # (but I need to try - now I don't have libpam.a on my system, only libpam.so)
63 grep -q ^CONFIG_STATIC= .config && {
64 cat .config \
65 | grep -v ^CONFIG_PAM= \
66 | cat >.config.new
67 mv .config.new .config
68 }
69
70 # Regenerate .config with default answers for yanked-off options
71 { yes "" | make oldconfig >/dev/null; } || exit 1
72
73 nice -n 10 make $MAKEOPTS 2>&1 | tee -a make.log
74
75 test -x busybox && {
76     cd ..
77     rm -rf "$dir"
78     exit 0
79 }
80
81 cd ..
82 mv "$dir" "failed.$dir"
83 exit 1