ash: do not let EXIT trap to fire in `trap`
[oweals/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 | grep -v ^CONFIG_ACPID= \
39 | grep -v ^CONFIG_FLASH_ERASEALL= \
40 | grep -v ^CONFIG_FLASH_LOCK= \
41 | grep -v ^CONFIG_FLASH_UNLOCK= \
42 | cat >.config.new
43 mv .config.new .config
44 }
45
46 test "$libc" = uclibc && {
47 cat .config \
48 | grep -v ^CONFIG_SELINUX= \
49 | grep -v ^CONFIG_EFENCE= \
50 | grep -v ^CONFIG_DMALLOC= \
51 | grep -v ^CONFIG_BUILD_LIBBUSYBOX= \
52 | grep -v ^CONFIG_PAM= \
53 | grep -v ^CONFIG_TASKSET= \
54 | grep -v ^CONFIG_FEATURE_ASSUME_UNICODE= \
55 | grep -v ^CONFIG_PIE= \
56 | grep -v CONFIG_STATIC \
57 | grep -v CONFIG_CROSS_COMPILER_PREFIX \
58 | cat >.config.new
59 mv .config.new .config
60 echo 'CONFIG_CROSS_COMPILER_PREFIX="'"$uclibc_cross"'"' >>.config
61 echo 'CONFIG_STATIC=y' >>.config
62 }
63
64 # If NOMMU, remove some things
65 grep -q ^CONFIG_NOMMU= .config && {
66 cat .config \
67 | grep -v ^CONFIG_ASH= \
68 | grep -v ^CONFIG_FEATURE_SH_IS_ASH= \
69 | cat >.config.new
70 mv .config.new .config
71 }
72
73 # If STATIC, remove some things
74 # PAM with static linking is probably pointless
75 # (but I need to try - now I don't have libpam.a on my system, only libpam.so)
76 grep -q ^CONFIG_STATIC= .config && {
77 cat .config \
78 | grep -v ^CONFIG_PAM= \
79 | cat >.config.new
80 mv .config.new .config
81 }
82
83 # Regenerate .config with default answers for yanked-off options
84 { yes "" | make oldconfig >/dev/null; } || exit 1
85
86 nice -n 10 make 2>&1 | tee -a make.log
87
88 test -x busybox && {
89     cd ..
90     rm -rf "$dir"
91     exit 0
92 }
93
94 cd ..
95 mv "$dir" "failed.$dir"
96 exit 1