IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / contrib / reghunt / examples / 29106.test
blob28f89a8e540ca833674a92c8595ca5c335a86cc5
1 #! /bin/sh
3 ID=$1
5 LOGID=`printf "%04d" ${ID}`
6 LOG=${BUGID}.${LOGID}.out
7 MSGID="bug ${BUGID}, id ${ID}"
9 $REG_TEST_COMPILER $REG_OPTS $REG_TESTCASE > ${LOG} 2>&1
11 if [ $? -ne 0 ]; then
12 echo "`date` unexpected failure: test compilation failed for ${MSGID}"
13 exit $REG_ERROR
16 ./a.out >> ${LOG} 2>&1
17 if [ $? -ne 0 ]; then
18 echo "`date` unexpected failure: test run aborted for ${MSGID}"
19 exit $REG_ERROR
22 grep -q 'size of thingy is 4' $LOG
23 if [ $? -ne 0 ]; then
24 echo "`date` no output for ${MSGID}"
25 exit $REG_FAIL
28 echo "`date` test ran successfully for ${MSGID}"
29 exit $REG_PASS