Skip to content
Snippets Groups Projects
Commit 377cd40a authored by Moe Jette's avatar Moe Jette
Browse files

tweak regression script to report the test type that failed

parent 88163e9b
No related branches found
No related tags found
No related merge requests found
......@@ -53,10 +53,10 @@ fi
BEGIN_TIME=`date +%s`
for major in `seq 1 20`; do
for minor in `seq 1 100`; do
TEST=./test${major}.${minor}
if [ ! -f $TEST ]; then continue; fi
TEST=test${major}.${minor}
if [ ! -f ./$TEST ]; then continue; fi
$TEST
./$TEST
if [ $? -eq 0 ]
then
COMPLETIONS=$((COMPLETIONS+1))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment