4 # Copyright (c) 2014 Vojtech Horky
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted provided that the following conditions
11 # - Redistributions of source code must retain the above copyright
12 # notice, this list of conditions and the following disclaimer.
13 # - Redistributions in binary form must reproduce the above copyright
14 # notice, this list of conditions and the following disclaimer in the
15 # documentation and/or other materials provided with the distribution.
16 # - The name of the author may not be used to endorse or promote products
17 # derived from this software without specific prior written permission.
19 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 FILENAME_PREFIX
=random_run_
36 PRUNE_CONFIG_FILE
=${FILENAME_PREFIX}prune.config
38 echo -n "">"$PRUNE_CONFIG_FILE"
40 while getopts n
:j
:x
:hs option
; do
49 echo "$OPTARG" |
tr -d ' ' >>"$PRUNE_CONFIG_FILE"
52 echo "COMPILER=gcc_native" >>"$PRUNE_CONFIG_FILE"
53 echo "COMPILER=gcc_helenos" >>"$PRUNE_CONFIG_FILE"
54 echo "COMPILER=icc" >>"$PRUNE_CONFIG_FILE"
57 echo "Usage: $0 [options]"
58 echo "where [options] could be:"
61 echo " How many configurations to check."
62 echo " (Default is one configuration.)"
63 echo " -j PARALLELISM"
64 echo " How many parallel jobs to execute by 'make'."
65 echo " (Default is single job configuration.)"
67 echo " Use only supported compilers."
68 echo " (That is, only GCC cross-compiler and Clang.)"
69 echo " -x CONFIG_OPTION=value"
70 echo " Skip the configuration if this option is present."
71 echo " (Example: CONFIG_BINUTILS=n means that only configurations"
72 echo " where binutils *are* included would be built.)"
74 echo " Print this help and exit."
76 if [ "$option" = "h" ]; then
88 while [ $COUNTER -lt $LOOPS ]; do
89 COUNTER
=$
(( $COUNTER + 1 ))
90 echo "Try #$COUNTER ($FAILED failed):" >&2
93 echo " Cleaning after previous build." >&2
94 make distclean
-j$JOBS 2>&1 ||
exit 1
97 echo " Preparing random configuration." >&2
98 # It would be nicer to allow set the constraints directly to
99 # the tools/config.py script but this usually works.
100 # We retry $MAX_RETRIES before aborting this run completely.
103 RETRIES
=$
(( $RETRIES + 1 ))
104 if [ $RETRIES -ge $MAX_RETRIES ]; then
105 echo " Failed to generate random configuration with given constraints after $RETRIES tries." >&2
109 make random-config
2>&1 ||
exit 1
111 tr -d ' ' <Makefile.config
>"${FILENAME_PREFIX}config.trimmed"
113 THIS_CONFIG_OKAY
=true
114 while read pattern
; do
115 if grep -q -e "$pattern" "${FILENAME_PREFIX}config.trimmed"; then
116 THIS_CONFIG_OKAY
=false
119 done <"$PRUNE_CONFIG_FILE"
121 rm -f "${FILENAME_PREFIX}config.trimmed"
123 if $THIS_CONFIG_OKAY; then
129 # Report basic info about the configuration and build it
130 BASIC_CONFIG
=`sed -n \
131 -e 's#PLATFORM = \(.*\)#\1#p' \
132 -e 's#MACHINE = \(.*\)#\1#p' \
133 -e 's#COMPILER = \(.*\)#\1#p' \
135 | paste '-sd,' | sed 's#,#, #g'`
136 echo -n " Building ($BASIC_CONFIG)... " >&2
139 if [ $?
-eq 0 ]; then
147 ) >random_run_
$COUNTER.log
150 if [ $RC -ne 0 ]; then
151 tail -n 10 random_run_
$COUNTER.log |
sed 's#.*# | &#'
152 FAILED
=$
(( $FAILED + 1 ))
155 if [ -e Makefile.config
]; then
156 cp Makefile.config
"$FILENAME_PREFIX$COUNTER.Makefile.config"
157 cp config.h
"$FILENAME_PREFIX$COUNTER.config.h"
161 rm "$PRUNE_CONFIG_FILE"
163 echo "Out of $LOOPS tries, $FAILED configurations failed to compile." >&2