Line 69... |
Line 69... |
function dec_count {
|
function dec_count {
|
|
|
# Lock all the file manipulation. Result will be result of function
|
# Lock all the file manipulation. Result will be result of function
|
(
|
(
|
flock -e 201
|
flock -e 201
|
|
echo "**** Decrement started ($$)"
|
val=`cat ${tmp_count}`
|
val=`cat ${tmp_count}`
|
|
|
if [ ${val} -gt 0 ]
|
if [ ${val} -gt 0 ]
|
then
|
then
|
(( val-- ))
|
(( val-- ))
|
echo ${val} > ${tmp_count}
|
echo ${val} > ${tmp_count}
|
|
echo "**** Decrement ended ($$)"
|
return 0
|
return 0
|
else
|
else
|
|
echo "**** Decrement ended ($$)"
|
return 1
|
return 1
|
fi
|
fi
|
) 201> ${lockfile}
|
) 201> ${lockfile}
|
}
|
}
|
|
|
Line 91... |
Line 94... |
function inc_count {
|
function inc_count {
|
|
|
# Lock all the file manipulation.
|
# Lock all the file manipulation.
|
(
|
(
|
flock -e 201
|
flock -e 201
|
|
echo "**** Increment started ($$)"
|
val=`cat ${tmp_count}`
|
val=`cat ${tmp_count}`
|
(( val++ ))
|
(( val++ ))
|
echo ${val} > ${tmp_count}
|
echo ${val} > ${tmp_count}
|
|
echo "**** Increment ended ($$)"
|
) 201> ${lockfile}
|
) 201> ${lockfile}
|
}
|
}
|
|
|
|
|
# See if telnet or ftp is working
|
# See if telnet or ftp is working
|
Line 199... |
Line 204... |
|
|
# We combine calls to check_telnet and check_ftp. Note that we do check both,
|
# We combine calls to check_telnet and check_ftp. Note that we do check both,
|
# even though we really only need to check one for failure. However in the
|
# even though we really only need to check one for failure. However in the
|
# future the additional information may be useful.
|
# future the additional information may be useful.
|
|
|
|
# This seems to be quite pessimistic. So we try each test several times.
|
|
|
# @param[in] $1 The IP address
|
# @param[in] $1 The IP address
|
|
|
# @return 0 on success, non-zero (10 x telnet failure + ftp failure)
|
# @return 0 on success, non-zero (10 x telnet failure + ftp failure)
|
# otherwise.
|
# otherwise.
|
function check_telnet_ftp {
|
function check_telnet_ftp {
|
|
# Try telnet 10 times to see if we can get it to work. Once working is
|
|
# enough
|
|
count=10
|
|
while [ ${count} -gt 0 ]
|
|
do
|
|
(( count-- ))
|
check_telnet $1
|
check_telnet $1
|
res_telnet=$?
|
res_telnet=$?
|
|
if [ ${res_telnet} -eq 0 ]
|
|
then
|
|
break
|
|
fi
|
|
done
|
|
|
|
# Try FTP 10 times to see if we can get it to work. Once working is enough
|
|
count=10
|
|
while [ ${count} -gt 0 ]
|
|
do
|
|
(( count-- ))
|
check_ftp $1
|
check_ftp $1
|
res_ftp=$?
|
res_ftp=$?
|
|
|
|
if [ ${res_ftp} -eq 0 ]
|
|
then
|
|
break
|
|
fi
|
|
done
|
|
|
return $(( $res_telnet * 10 + $res_ftp ))
|
return $(( $res_telnet * 10 + $res_ftp ))
|
}
|
}
|
|
|
|
|
# Run one block of tests. The arguments in order are:
|
# Run one block of tests.
|
|
|
|
# Do not start any computation until an IP address is free.
|
|
|
# @param[in] $1 the test directory
|
# @param[in] $1 the test directory
|
# @param[in] $2 the source directory
|
# @param[in] $2 the source directory
|
# @param[in] $3 the name of the tool
|
# @param[in] $3 the name of the tool
|
# @param[in] $4 the base name of the test file & test file name.
|
# @param[in] $4 the base name of the test file & test file name.
|
# @param[in] $5 an index (increments on each retry)
|
# @param[in] $5 an index (increments on each retry)
|
|
|
# @return 0 if the IP address is still alive at the end of the test, 1 if it
|
# @return 0 if the IP address is still alive at the end of the test, 1 if it
|
# is not.
|
# is not.
|
function run_test_block {
|
function run_test_block {
|
|
|
|
# Wait until an IP address is free (between 10 and 19 seconds)
|
|
until dec_count
|
|
do
|
|
sleep $(( 10 + ${RANDOM} % 10 ))
|
|
done
|
|
|
test_dir=$1
|
test_dir=$1
|
src_dir=$2
|
src_dir=$2
|
tool=$3
|
tool=$3
|
test_base=`echo $4 | sed -e 's/#.*$//'`
|
test_base=`echo $4 | sed -e 's/#.*$//'`
|
test_file=`echo $4 | sed -e 's/^.*#//' -e 's/%/ /g'`
|
test_file=`echo $4 | sed -e 's/^.*#//' -e 's/%/ /g'`
|
Line 269... |
Line 308... |
# We also need to fail if we see any TCL or expect error messages (with
|
# We also need to fail if we see any TCL or expect error messages (with
|
# the string "ERROR: ". These are indicative of transient failures.
|
# the string "ERROR: ". These are indicative of transient failures.
|
ip=`sed < ${tool}/${log_file} -n -e 's/OR32 target hostname is //p'`
|
ip=`sed < ${tool}/${log_file} -n -e 's/OR32 target hostname is //p'`
|
if check_telnet_ftp ${ip}
|
if check_telnet_ftp ${ip}
|
then
|
then
|
if grep "ERROR: " ${tool}/${log_file} > /dev/null 2>&1
|
if grep "ERROR: " ${tool}/${log_file} > /dev/null 2>&1 ||
|
|
grep "status not a number" ${tool}/${log_file} > /dev/null 2>&1 ||
|
|
grep "Download.*failed." ${tool}/${log_file} > /dev/null 2>&1
|
then
|
then
|
echo "Running ${test_file} on ${ip} hit TCL/expect failure"
|
echo "Running ${test_file} on ${ip} hit TCL/expect failure"
|
mv ${tool}/${log_file} ${tool}/${log_file}-failed-$$-${index}
|
mv ${tool}/${log_file} ${tool}/${log_file}-failed-$$-${index}
|
mv ${tool}/${sum_file} ${tool}/${sum_file}-failed-$$-${index}
|
mv ${tool}/${sum_file} ${tool}/${sum_file}-failed-$$-${index}
|
res=1
|
res=1
|
else
|
else
|
echo "Running ${test_file} on ${ip} completed successfully"
|
echo "Running ${test_file} on ${ip} completed successfully"
|
res=0
|
res=0
|
fi
|
fi
|
|
|
|
# Whether we succeeded or failed, we have returned an IP address for
|
|
# reuse, so increment the count.
|
|
inc_count
|
else
|
else
|
echo "Running ${test_file} on ${ip} died with code $?"
|
echo "Running ${test_file} on ${ip} died with code $?"
|
mv ${tool}/${log_file} ${tool}/${log_file}-failed-$$-${index}
|
mv ${tool}/${log_file} ${tool}/${log_file}-failed-$$-${index}
|
mv ${tool}/${sum_file} ${tool}/${sum_file}-failed-$$-${index}
|
mv ${tool}/${sum_file} ${tool}/${sum_file}-failed-$$-${index}
|
${root_dir}/get-ip.sh --delete ${ip}
|
${root_dir}/get-ip.sh --delete ${ip}
|
|
echo "**** IP ${ip} deleted"
|
res=1
|
res=1
|
|
|
|
# We have not returned an IP address for reuse, so do not increment
|
|
# the count.
|
fi
|
fi
|
|
|
cd - > /dev/null 2>&1
|
cd - > /dev/null 2>&1
|
return ${res}
|
return ${res}
|
|
|
Line 353... |
Line 402... |
# Create the local config file for DejaGnu
|
# Create the local config file for DejaGnu
|
create_local_config ${test_dir}
|
create_local_config ${test_dir}
|
|
|
for t in $*
|
for t in $*
|
do
|
do
|
# Wait until an IP address is free
|
# Run the test in the background. Nothing will happen until it can
|
until dec_count
|
# actually get an IP address.
|
do
|
|
sleep 1
|
|
done
|
|
|
|
# Run the test in the background
|
|
(
|
(
|
index=1
|
index=1
|
|
|
until run_test_block ${test_dir} ${src_dir} ${tool} ${t} ${index}
|
until run_test_block ${test_dir} ${src_dir} ${tool} ${t} ${index}
|
do
|
do
|
Line 374... |
Line 418... |
else
|
else
|
break
|
break
|
fi
|
fi
|
index=$(( ${index} + 1 ))
|
index=$(( ${index} + 1 ))
|
done
|
done
|
|
|
inc_count
|
|
) &
|
) &
|
|
|
# If we have exhausted all the IP addresses, give up here.
|
# If we have exhausted all the IP addresses, give up here.
|
if ${root_dir}/get-ip.sh > /dev/null 2>&1
|
if ${root_dir}/get-ip.sh > /dev/null 2>&1
|
then
|
then
|
Line 409... |
Line 451... |
exec3_list=`cd ${td}; echo execute/200[4-9]*`
|
exec3_list=`cd ${td}; echo execute/200[4-9]*`
|
exec4_list=`cd ${td}; echo execute/[013-89][0-4]*`
|
exec4_list=`cd ${td}; echo execute/[013-89][0-4]*`
|
exec5_list=`cd ${td}; echo execute/[013-89][5-9]*`
|
exec5_list=`cd ${td}; echo execute/[013-89][5-9]*`
|
exec6_list=`cd ${td}; echo execute/[abc-lABC-L]*`
|
exec6_list=`cd ${td}; echo execute/[abc-lABC-L]*`
|
exec7_list=`cd ${td}; echo execute/p[^r]* execute/pr[0-3]*`
|
exec7_list=`cd ${td}; echo execute/p[^r]* execute/pr[0-3]*`
|
exec8_list=`cd ${td}; echo execute/pr[^0-3]* execute/[mnMNq-zQ-Z]*`
|
exec8_list=`cd ${td}; echo execute/pr[^0-3]*`
|
|
exec9_list=`cd ${td}; echo execute/[mnMN]*`
|
|
exec10_list=`cd ${td}; echo execute/[q-sQ-S]*`
|
|
exec11_list=`cd ${td}; echo execute/[tuw-zTUW-Z]*`
|
|
exec12_list=`cd ${td}; echo execute/[vV]*`
|
|
|
exec1_list=`echo ${exec1_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
exec1_list=`echo ${exec1_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
exec2_list=`echo ${exec2_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
exec2_list=`echo ${exec2_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
exec3_list=`echo ${exec3_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
exec3_list=`echo ${exec3_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
exec4_list=`echo ${exec4_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
exec4_list=`echo ${exec4_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
exec5_list=`echo ${exec5_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
exec5_list=`echo ${exec5_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
exec6_list=`echo ${exec6_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
exec6_list=`echo ${exec6_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
exec7_list=`echo ${exec7_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
exec7_list=`echo ${exec7_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
exec8_list=`echo ${exec8_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
exec8_list=`echo ${exec8_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
exec9_list=`echo ${exec9_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
exec10_list=`echo ${exec10_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
exec11_list=`echo ${exec11_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
exec12_list=`echo ${exec12_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
|
gcc_test_list="aapcs#aapcs.exp \
|
gcc_test_list="aapcs#aapcs.exp \
|
abi-avx#abi-avx.exp \
|
abi-avx#abi-avx.exp \
|
abi-x86_64#abi-x86_64.exp \
|
abi-x86_64#abi-x86_64.exp \
|
acker1#acker1.exp \
|
acker1#acker1.exp \
|
Line 456... |
Line 506... |
execute-4#execute.exp=${exec4_list} \
|
execute-4#execute.exp=${exec4_list} \
|
execute-5#execute.exp=${exec5_list} \
|
execute-5#execute.exp=${exec5_list} \
|
execute-6#execute.exp=${exec6_list} \
|
execute-6#execute.exp=${exec6_list} \
|
execute-7#execute.exp=${exec7_list} \
|
execute-7#execute.exp=${exec7_list} \
|
execute-8#execute.exp=${exec8_list} \
|
execute-8#execute.exp=${exec8_list} \
|
|
execute-9#execute.exp=${exec9_list} \
|
|
execute-10#execute.exp=${exec10_list} \
|
|
execute-11#execute.exp=${exec11_list} \
|
|
execute-12#execute.exp=${exec12_list} \
|
fixed-point#fixed-point.exp \
|
fixed-point#fixed-point.exp \
|
format#format.exp \
|
format#format.exp \
|
frv#frv.exp \
|
frv#frv.exp \
|
gcov#gcov.exp \
|
gcov#gcov.exp \
|
gomp#gomp.exp \
|
gomp#gomp.exp \
|
Line 545... |
Line 599... |
lib_src_dir=${root_dir}/unisrc/libstdc++-v3/testsuite
|
lib_src_dir=${root_dir}/unisrc/libstdc++-v3/testsuite
|
|
|
# The list of libstdc++-v3 tests to run. These are the tests actually used in
|
# The list of libstdc++-v3 tests to run. These are the tests actually used in
|
# make check-libstdc++-v3. The test is a test base name followed by the .exp
|
# make check-libstdc++-v3. The test is a test base name followed by the .exp
|
# file name.
|
# file name.
|
conf1_list=`cd ${lib_src_dir}; echo [ab]* de* p*/*`
|
conf1_list=`cd ${lib_src_dir}; echo a*/d*/a*`
|
conf2_list=`cd ${lib_src_dir}; echo e*/[a-m]*`
|
conf2_list=`cd ${lib_src_dir}; echo a*/d*/[^a]*`
|
conf3_list=`cd ${lib_src_dir}; echo e*/n*`
|
conf3_list=`cd ${lib_src_dir}; echo a*/[^d]*`
|
conf4_list=`cd ${lib_src_dir}; echo e*/pb*`
|
conf4_list=`cd ${lib_src_dir}; echo backward/hash_map*`
|
conf5_list=`cd ${lib_src_dir}; echo e*/po* e*/pr*`
|
conf5_list=`cd ${lib_src_dir}; echo backward/hash_set*`
|
conf6_list=`cd ${lib_src_dir}; echo e*/[^a-p]*`
|
conf6_list=`cd ${lib_src_dir}; echo backward/[^h]*`
|
conf7_list=`cd ${lib_src_dir}; echo [013-9]*/* 20_*/*`
|
conf7_list=`cd ${lib_src_dir}; echo de*`
|
conf8_list=`cd ${lib_src_dir}; echo 21_*/*`
|
conf8_list=`cd ${lib_src_dir}; echo e*/[a-c]*`
|
conf9_list=`cd ${lib_src_dir}; echo 22_*/*`
|
conf9_list=`cd ${lib_src_dir}; echo e*/[d-f]*`
|
conf10_list=`cd ${lib_src_dir}; echo 23_*/[a-m]*`
|
conf10_list=`cd ${lib_src_dir}; echo e*/[g-i]*`
|
conf11_list=`cd ${lib_src_dir}; echo 23_*/[^a-m]*`
|
conf11_list=`cd ${lib_src_dir}; echo e*/[j-m]*`
|
conf12_list=`cd ${lib_src_dir}; echo 24_*/* 25_*/*`
|
conf12_list=`cd ${lib_src_dir}; echo e*/n*`
|
conf13_list=`cd ${lib_src_dir}; echo 26_*/*`
|
conf13_list=`cd ${lib_src_dir}; echo e*/pb*/e*/[a-e]*`
|
conf14_list=`cd ${lib_src_dir}; echo 27_*/basic_f*`
|
conf14_list=`cd ${lib_src_dir}; echo e*/pb*/e*/[f-h]*`
|
conf15_list=`cd ${lib_src_dir}; echo 27_*/basic_s*`
|
conf15_list=`cd ${lib_src_dir}; echo e*/pb*/e*/[p-s]*`
|
conf16_list=`cd ${lib_src_dir}; echo 27_*/basic_i*`
|
conf16_list=`cd ${lib_src_dir}; echo e*/pb*/e*/[^a-s]*`
|
conf17_list=`cd ${lib_src_dir}; echo 27_*/basic_of*`
|
conf17_list=`cd ${lib_src_dir}; echo e*/pb*/[^e]*/[a-h]*`
|
conf18_list=`cd ${lib_src_dir}; echo 27_*/basic_os*`
|
conf18_list=`cd ${lib_src_dir}; echo e*/pb*/[^e]*/[i-l]*`
|
conf19_list=`cd ${lib_src_dir}; echo 27_*/[^b]* 2[8-9]_*/*`
|
conf19_list=`cd ${lib_src_dir}; echo e*/pb*/[^e]*/[m-p]*`
|
conf20_list=`cd ${lib_src_dir}; echo t*/[0-5]*`
|
conf20_list=`cd ${lib_src_dir}; echo e*/pb*/[^e]*/tree*`
|
conf21_list=`cd ${lib_src_dir}; echo t*/[^0-5]*`
|
conf21_list=`cd ${lib_src_dir}; echo e*/pb*/[^e]*/trie*`
|
|
conf22_list=`cd ${lib_src_dir}; echo e*/po*`
|
|
conf23_list=`cd ${lib_src_dir}; echo e*/pr*`
|
|
conf24_list=`cd ${lib_src_dir}; echo e*/[rs]*`
|
|
conf25_list=`cd ${lib_src_dir}; echo e*/[^a-s]*`
|
|
conf26_list=`cd ${lib_src_dir}; echo 17*/*`
|
|
conf27_list=`cd ${lib_src_dir}; echo 18*/*`
|
|
conf28_list=`cd ${lib_src_dir}; echo 19*/*`
|
|
conf29_list=`cd ${lib_src_dir}; echo [3-9]*/*`
|
|
conf30_list=`cd ${lib_src_dir}; echo 20_*/[a-d]*`
|
|
conf31_list=`cd ${lib_src_dir}; echo 20_*/[e-h]*`
|
|
conf32_list=`cd ${lib_src_dir}; echo 20_*/[i]*`
|
|
conf33_list=`cd ${lib_src_dir}; echo 20_*/[^a-i]*`
|
|
conf34_list=`cd ${lib_src_dir}; echo 21_*/b*/[a-c]*`
|
|
conf35_list=`cd ${lib_src_dir}; echo 21_*/b*/[d-i]*`
|
|
conf36_list=`cd ${lib_src_dir}; echo 21_*/b*/n*`
|
|
conf37_list=`cd ${lib_src_dir}; echo 21_*/b*/[o-p]*`
|
|
conf38_list=`cd ${lib_src_dir}; echo 21_*/b*/r*`
|
|
conf39_list=`cd ${lib_src_dir}; echo 21_*/b*/[^a-r]*`
|
|
conf40_list=`cd ${lib_src_dir}; echo 21_*/[^b]*`
|
|
conf41_list=`cd ${lib_src_dir}; echo 22_*/[a-c]*`
|
|
conf42_list=`cd ${lib_src_dir}; echo 22_*/[d-l]*`
|
|
conf43_list=`cd ${lib_src_dir}; echo 22_*/m*`
|
|
conf44_list=`cd ${lib_src_dir}; echo 22_*/nump*`
|
|
conf45_list=`cd ${lib_src_dir}; echo 22_*/num[^p]*`
|
|
conf46_list=`cd ${lib_src_dir}; echo 22_*/[^a-n]*`
|
|
conf47_list=`cd ${lib_src_dir}; echo 23_*/[a-b]*`
|
|
conf48_list=`cd ${lib_src_dir}; echo 23_*/[c-f]*`
|
|
conf49_list=`cd ${lib_src_dir}; echo 23_*/[g-l]*`
|
|
conf50_list=`cd ${lib_src_dir}; echo 23_*/ma*`
|
|
conf51_list=`cd ${lib_src_dir}; echo 23_*/m[^a]*`
|
|
conf52_list=`cd ${lib_src_dir}; echo 23_*/[n-t]*`
|
|
conf53_list=`cd ${lib_src_dir}; echo 23_*/unordered_map*`
|
|
conf54_list=`cd ${lib_src_dir}; echo 23_*/unordered_multimap*`
|
|
conf55_list=`cd ${lib_src_dir}; echo 23_*/unordered_multiset*`
|
|
conf56_list=`cd ${lib_src_dir}; echo 23_*/unordered_set*`
|
|
conf57_list=`cd ${lib_src_dir}; echo 23_*/[^a-u]*`
|
|
conf58_list=`cd ${lib_src_dir}; echo 24_*/*`
|
|
conf59_list=`cd ${lib_src_dir}; echo 25_*/[a-f]*`
|
|
conf60_list=`cd ${lib_src_dir}; echo 25_*/[g-m]*`
|
|
conf61_list=`cd ${lib_src_dir}; echo 25_*/[n-p]*`
|
|
conf62_list=`cd ${lib_src_dir}; echo 25_*/r*`
|
|
conf63_list=`cd ${lib_src_dir}; echo 25_*/[^a-r]*`
|
|
conf64_list=`cd ${lib_src_dir}; echo 26_*/[a-i]*`
|
|
conf65_list=`cd ${lib_src_dir}; echo 26_*/[j-p]*`
|
|
conf66_list=`cd ${lib_src_dir}; echo 26_*/r*`
|
|
conf67_list=`cd ${lib_src_dir}; echo 26_*/[^a-r]*`
|
|
conf68_list=`cd ${lib_src_dir}; echo 27_*/basic_filebuf/[a-i]*`
|
|
conf69_list=`cd ${lib_src_dir}; echo 27_*/basic_filebuf/[j-r]*`
|
|
conf70_list=`cd ${lib_src_dir}; echo 27_*/basic_filebuf/s[a-d]*`
|
|
conf71_list=`cd ${lib_src_dir}; echo 27_*/basic_filebuf/see*`
|
|
conf72_list=`cd ${lib_src_dir}; echo 27_*/basic_filebuf/se[^e]*`
|
|
conf73_list=`cd ${lib_src_dir}; echo 27_*/basic_filebuf/s[f-o]*`
|
|
conf74_list=`cd ${lib_src_dir}; echo 27_*/basic_filebuf/sp*`
|
|
conf75_list=`cd ${lib_src_dir}; echo 27_*/basic_filebuf/s[^a-p]*`
|
|
conf76_list=`cd ${lib_src_dir}; echo 27_*/basic_filebuf/[^a-s]*`
|
|
conf77_list=`cd ${lib_src_dir}; echo 27_*/basic_f[^i]*`
|
|
conf78_list=`cd ${lib_src_dir}; echo 27_*/basic_streambuf*`
|
|
conf79_list=`cd ${lib_src_dir}; echo 27_*/basic_stringbuf/[a-i]*`
|
|
conf80_list=`cd ${lib_src_dir}; echo 27_*/basic_stringbuf/[j-r]*`
|
|
conf81_list=`cd ${lib_src_dir}; echo 27_*/basic_stringbuf/[^a-r]*`
|
|
conf82_list=`cd ${lib_src_dir}; echo 27_*/basic_stringstream*`
|
|
conf83_list=`cd ${lib_src_dir}; echo 27_*/basic_if*`
|
|
conf84_list=`cd ${lib_src_dir}; echo 27_*/basic_io*`
|
|
conf85_list=`cd ${lib_src_dir}; echo 27_*/basic_istream*/[a-e]*`
|
|
conf86_list=`cd ${lib_src_dir}; echo 27_*/basic_istream*/[f-p]*`
|
|
conf87_list=`cd ${lib_src_dir}; echo 27_*/basic_istream*/[^a-p]*`
|
|
conf88_list=`cd ${lib_src_dir}; echo 27_*/basic_istring*`
|
|
conf89_list=`cd ${lib_src_dir}; echo 27_*/basic_of*`
|
|
conf90_list=`cd ${lib_src_dir}; echo 27_*/basic_ostream/[a-h]*`
|
|
conf91_list=`cd ${lib_src_dir}; echo 27_*/basic_ostream/inserters_a*`
|
|
conf92_list=`cd ${lib_src_dir}; echo 27_*/basic_ostream/inserters_[b-c]*`
|
|
conf93_list=`cd ${lib_src_dir}; echo 27_*/basic_ostream/inserters_[^a-c]*`
|
|
conf94_list=`cd ${lib_src_dir}; echo 27_*/basic_ostream/[^a-i]*`
|
|
conf95_list=`cd ${lib_src_dir}; echo 27_*/basic_ostring*`
|
|
conf96_list=`cd ${lib_src_dir}; echo 27_*/[acd-m]*`
|
|
conf97_list=`cd ${lib_src_dir}; echo 27_*/[^a-m]*`
|
|
conf98_list=`cd ${lib_src_dir}; echo 28_*/*`
|
|
conf99_list=`cd ${lib_src_dir}; echo 29_*/*`
|
|
conf100_list=`cd ${lib_src_dir}; echo p*/*`
|
|
conf101_list=`cd ${lib_src_dir}; echo t*/[0-3]*`
|
|
conf102_list=`cd ${lib_src_dir}; echo t*/4*/[a-h]*`
|
|
conf103_list=`cd ${lib_src_dir}; echo t*/4*/[i]*`
|
|
conf104_list=`cd ${lib_src_dir}; echo t*/4*/[^a-i]*`
|
|
conf105_list=`cd ${lib_src_dir}; echo t*/5*/[a-h]*`
|
|
conf106_list=`cd ${lib_src_dir}; echo t*/5*/[i-r]*`
|
|
conf107_list=`cd ${lib_src_dir}; echo t*/5*/[^a-r]*/0*`
|
|
conf108_list=`cd ${lib_src_dir}; echo t*/5*/[^a-r]*/1*`
|
|
conf109_list=`cd ${lib_src_dir}; echo t*/5*/[^a-r]*/2*`
|
|
conf110_list=`cd ${lib_src_dir}; echo t*/5*/[^a-r]*/[^0-2]*`
|
|
conf111_list=`cd ${lib_src_dir}; echo t*/6*`
|
|
conf112_list=`cd ${lib_src_dir}; echo t*/7*`
|
|
conf113_list=`cd ${lib_src_dir}; echo t*/[^0-7]*`
|
|
|
conf1_list=`echo ${conf1_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
conf1_list=`echo ${conf1_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
conf2_list=`echo ${conf2_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
conf2_list=`echo ${conf2_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
conf3_list=`echo ${conf3_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
conf3_list=`echo ${conf3_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
conf4_list=`echo ${conf4_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
conf4_list=`echo ${conf4_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
Line 588... |
Line 734... |
conf17_list=`echo ${conf17_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
conf17_list=`echo ${conf17_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
conf18_list=`echo ${conf18_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
conf18_list=`echo ${conf18_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
conf19_list=`echo ${conf19_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
conf19_list=`echo ${conf19_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
conf20_list=`echo ${conf20_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
conf20_list=`echo ${conf20_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
conf21_list=`echo ${conf21_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
conf21_list=`echo ${conf21_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf22_list=`echo ${conf22_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf23_list=`echo ${conf23_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf24_list=`echo ${conf24_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf25_list=`echo ${conf25_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf26_list=`echo ${conf26_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf27_list=`echo ${conf27_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf28_list=`echo ${conf28_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf29_list=`echo ${conf29_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf30_list=`echo ${conf30_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf31_list=`echo ${conf31_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf32_list=`echo ${conf32_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf33_list=`echo ${conf33_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf34_list=`echo ${conf34_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf35_list=`echo ${conf35_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf36_list=`echo ${conf36_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf37_list=`echo ${conf37_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf38_list=`echo ${conf38_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf39_list=`echo ${conf39_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf40_list=`echo ${conf40_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf41_list=`echo ${conf41_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf42_list=`echo ${conf42_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf43_list=`echo ${conf43_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf44_list=`echo ${conf44_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf45_list=`echo ${conf45_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf46_list=`echo ${conf46_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf47_list=`echo ${conf47_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf48_list=`echo ${conf48_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf49_list=`echo ${conf49_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf50_list=`echo ${conf50_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf51_list=`echo ${conf51_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf52_list=`echo ${conf52_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf53_list=`echo ${conf53_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf54_list=`echo ${conf54_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf55_list=`echo ${conf55_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf56_list=`echo ${conf56_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf57_list=`echo ${conf57_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf58_list=`echo ${conf58_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf59_list=`echo ${conf59_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf60_list=`echo ${conf60_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf61_list=`echo ${conf61_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf62_list=`echo ${conf62_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf63_list=`echo ${conf63_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf64_list=`echo ${conf64_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf65_list=`echo ${conf65_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf66_list=`echo ${conf66_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf67_list=`echo ${conf67_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf68_list=`echo ${conf68_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf69_list=`echo ${conf69_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf70_list=`echo ${conf70_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf71_list=`echo ${conf71_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf72_list=`echo ${conf72_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf73_list=`echo ${conf73_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf74_list=`echo ${conf74_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf75_list=`echo ${conf75_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf76_list=`echo ${conf76_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf77_list=`echo ${conf77_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf78_list=`echo ${conf78_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf79_list=`echo ${conf79_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf80_list=`echo ${conf80_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf81_list=`echo ${conf81_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf82_list=`echo ${conf82_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf83_list=`echo ${conf83_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf84_list=`echo ${conf84_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf85_list=`echo ${conf85_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf86_list=`echo ${conf86_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf87_list=`echo ${conf87_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf87_list=`echo ${conf87_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf88_list=`echo ${conf88_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf89_list=`echo ${conf89_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf90_list=`echo ${conf90_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf91_list=`echo ${conf91_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf92_list=`echo ${conf92_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf93_list=`echo ${conf93_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf94_list=`echo ${conf94_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf95_list=`echo ${conf95_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf96_list=`echo ${conf96_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf97_list=`echo ${conf97_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf98_list=`echo ${conf98_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf99_list=`echo ${conf99_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf100_list=`echo ${conf100_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf101_list=`echo ${conf101_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf102_list=`echo ${conf102_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf103_list=`echo ${conf103_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf104_list=`echo ${conf104_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf105_list=`echo ${conf105_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf106_list=`echo ${conf106_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf107_list=`echo ${conf107_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf108_list=`echo ${conf108_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf109_list=`echo ${conf109_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf110_list=`echo ${conf110_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf111_list=`echo ${conf111_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf112_list=`echo ${conf112_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
conf113_list=`echo ${conf113_list} | sed -e 's/ /* /g' -e 's/$/*/' -e 's/ /%/g'`
|
|
|
lib_test_list="abi#abi.exp \
|
lib_test_list="abi#abi.exp \
|
conformance-1#conformance.exp=${conf1_list} \
|
conformance-1#conformance.exp=${conf1_list} \
|
conformance-2#conformance.exp=${conf2_list} \
|
conformance-2#conformance.exp=${conf2_list} \
|
conformance-3#conformance.exp=${conf3_list} \
|
conformance-3#conformance.exp=${conf3_list} \
|
Line 610... |
Line 849... |
conformance-16#conformance.exp=${conf16_list} \
|
conformance-16#conformance.exp=${conf16_list} \
|
conformance-17#conformance.exp=${conf17_list} \
|
conformance-17#conformance.exp=${conf17_list} \
|
conformance-18#conformance.exp=${conf18_list} \
|
conformance-18#conformance.exp=${conf18_list} \
|
conformance-19#conformance.exp=${conf19_list} \
|
conformance-19#conformance.exp=${conf19_list} \
|
conformance-20#conformance.exp=${conf20_list} \
|
conformance-20#conformance.exp=${conf20_list} \
|
conformance-21#conformance.exp=${conf21_list}"
|
conformance-21#conformance.exp=${conf21_list} \
|
|
conformance-22#conformance.exp=${conf22_list} \
|
|
conformance-23#conformance.exp=${conf23_list} \
|
|
conformance-24#conformance.exp=${conf24_list} \
|
|
conformance-25#conformance.exp=${conf25_list} \
|
|
conformance-26#conformance.exp=${conf26_list} \
|
|
conformance-27#conformance.exp=${conf27_list} \
|
|
conformance-28#conformance.exp=${conf28_list} \
|
|
conformance-29#conformance.exp=${conf29_list} \
|
|
conformance-30#conformance.exp=${conf30_list} \
|
|
conformance-31#conformance.exp=${conf31_list} \
|
|
conformance-32#conformance.exp=${conf32_list} \
|
|
conformance-33#conformance.exp=${conf33_list} \
|
|
conformance-34#conformance.exp=${conf34_list} \
|
|
conformance-35#conformance.exp=${conf35_list} \
|
|
conformance-36#conformance.exp=${conf36_list} \
|
|
conformance-37#conformance.exp=${conf37_list} \
|
|
conformance-38#conformance.exp=${conf38_list} \
|
|
conformance-39#conformance.exp=${conf39_list} \
|
|
conformance-40#conformance.exp=${conf40_list} \
|
|
conformance-41#conformance.exp=${conf41_list} \
|
|
conformance-42#conformance.exp=${conf42_list} \
|
|
conformance-43#conformance.exp=${conf43_list} \
|
|
conformance-44#conformance.exp=${conf44_list} \
|
|
conformance-45#conformance.exp=${conf45_list} \
|
|
conformance-46#conformance.exp=${conf46_list} \
|
|
conformance-47#conformance.exp=${conf47_list} \
|
|
conformance-48#conformance.exp=${conf48_list} \
|
|
conformance-49#conformance.exp=${conf49_list} \
|
|
conformance-50#conformance.exp=${conf50_list} \
|
|
conformance-51#conformance.exp=${conf51_list} \
|
|
conformance-52#conformance.exp=${conf52_list} \
|
|
conformance-53#conformance.exp=${conf53_list} \
|
|
conformance-54#conformance.exp=${conf54_list} \
|
|
conformance-55#conformance.exp=${conf55_list} \
|
|
conformance-56#conformance.exp=${conf56_list} \
|
|
conformance-57#conformance.exp=${conf57_list} \
|
|
conformance-58#conformance.exp=${conf58_list} \
|
|
conformance-59#conformance.exp=${conf59_list} \
|
|
conformance-60#conformance.exp=${conf60_list} \
|
|
conformance-61#conformance.exp=${conf61_list} \
|
|
conformance-62#conformance.exp=${conf62_list} \
|
|
conformance-63#conformance.exp=${conf63_list} \
|
|
conformance-64#conformance.exp=${conf64_list} \
|
|
conformance-65#conformance.exp=${conf65_list} \
|
|
conformance-66#conformance.exp=${conf66_list} \
|
|
conformance-67#conformance.exp=${conf67_list} \
|
|
conformance-68#conformance.exp=${conf68_list} \
|
|
conformance-69#conformance.exp=${conf69_list} \
|
|
conformance-70#conformance.exp=${conf70_list} \
|
|
conformance-71#conformance.exp=${conf71_list} \
|
|
conformance-72#conformance.exp=${conf72_list} \
|
|
conformance-73#conformance.exp=${conf73_list} \
|
|
conformance-74#conformance.exp=${conf74_list} \
|
|
conformance-75#conformance.exp=${conf75_list} \
|
|
conformance-76#conformance.exp=${conf76_list} \
|
|
conformance-77#conformance.exp=${conf77_list} \
|
|
conformance-78#conformance.exp=${conf78_list} \
|
|
conformance-79#conformance.exp=${conf79_list} \
|
|
conformance-80#conformance.exp=${conf80_list} \
|
|
conformance-81#conformance.exp=${conf81_list} \
|
|
conformance-82#conformance.exp=${conf82_list} \
|
|
conformance-83#conformance.exp=${conf83_list} \
|
|
conformance-84#conformance.exp=${conf84_list} \
|
|
conformance-85#conformance.exp=${conf85_list} \
|
|
conformance-86#conformance.exp=${conf86_list} \
|
|
conformance-87#conformance.exp=${conf87_list} \
|
|
conformance-88#conformance.exp=${conf88_list} \
|
|
conformance-89#conformance.exp=${conf89_list} \
|
|
conformance-90#conformance.exp=${conf90_list} \
|
|
conformance-91#conformance.exp=${conf91_list} \
|
|
conformance-92#conformance.exp=${conf92_list} \
|
|
conformance-93#conformance.exp=${conf93_list} \
|
|
conformance-94#conformance.exp=${conf94_list} \
|
|
conformance-95#conformance.exp=${conf95_list} \
|
|
conformance-96#conformance.exp=${conf96_list} \
|
|
conformance-97#conformance.exp=${conf97_list} \
|
|
conformance-98#conformance.exp=${conf98_list} \
|
|
conformance-99#conformance.exp=${conf99_list} \
|
|
conformance-100#conformance.exp=${conf100_list} \
|
|
conformance-101#conformance.exp=${conf101_list} \
|
|
conformance-102#conformance.exp=${conf102_list} \
|
|
conformance-103#conformance.exp=${conf103_list} \
|
|
conformance-104#conformance.exp=${conf104_list} \
|
|
conformance-105#conformance.exp=${conf105_list} \
|
|
conformance-106#conformance.exp=${conf106_list} \
|
|
conformance-107#conformance.exp=${conf107_list} \
|
|
conformance-108#conformance.exp=${conf108_list} \
|
|
conformance-109#conformance.exp=${conf109_list} \
|
|
conformance-110#conformance.exp=${conf110_list} \
|
|
conformance-111#conformance.exp=${conf111_list} \
|
|
conformance-112#conformance.exp=${conf112_list} \
|
|
conformance-113#conformance.exp=${conf113_list}"
|
|
|
|
# Use this list of tests just to check the currently known failures and
|
|
# timeouts.
|
|
# lib_test_list="conformance-24#conformance.exp=${conf24_list} \
|
|
# conformance-29#conformance.exp=${conf29_list} \
|
|
# conformance-33#conformance.exp=${conf33_list} \
|
|
# conformance-49#conformance.exp=${conf49_list} \
|
|
# conformance-50#conformance.exp=${conf50_list} \
|
|
# conformance-89#conformance.exp=${conf89_list} \
|
|
# conformance-95#conformance.exp=${conf95_list} \
|
|
# conformance-101#conformance.exp=${conf101_list}"
|
|
|
|
|
run_tool_tests ${gcc_test_dir} ${gcc_src_dir} "gcc" ${gcc_test_list}
|
run_tool_tests ${gcc_test_dir} ${gcc_src_dir} "gcc" ${gcc_test_list}
|
run_tool_tests ${gcc_test_dir} ${gcc_src_dir} "g++" ${gpp_test_list}
|
run_tool_tests ${gcc_test_dir} ${gcc_src_dir} "g++" ${gpp_test_list}
|
run_tool_tests ${lib_test_dir} ${lib_src_dir} "libstdc++" ${lib_test_list}
|
run_tool_tests ${lib_test_dir} ${lib_src_dir} "libstdc++" ${lib_test_list}
|
|
|
# Wait for all the tests to finish
|
# Wait for all the tests to finish. We recompute the ip_count, since if boards
|
while [ `get_count` != "${ip_count}" ]
|
# have failed, it will be lower than when we started.
|
|
while [ `get_count` -lt "${ip_count}" ]
|
do
|
do
|
sleep 1
|
sleep 1
|
|
ip_count=`wc -l ${ip_file} | cut -d " " -f 1`
|
done
|
done
|
|
|
No newline at end of file
|
No newline at end of file
|