Unit Tests

- Eliminated obsolete benchmark.t.
- Removed the 'quick' mode logic to skip benchmarks in run_all.
- Restored bug.480.t tests that hung earlier.
This commit is contained in:
Paul Beckingham
2011-08-21 01:09:32 -04:00
parent 7aa4efef8d
commit 1b55a48757
4 changed files with 8 additions and 132 deletions

View File

@@ -2,14 +2,6 @@
date > all.log
MODE=quick
if [ "x$1" == 'xslow' ]; then
echo 'Including benchmarks'
MODE=slow
else
echo 'Skipping benchmarks'
fi
VRAMSTEG=/usr/local/bin/vramsteg
BAR=0
if [ -x $VRAMSTEG ]; then
@@ -28,9 +20,7 @@ do
COUNT=$[COUNT + 1]
fi
if [[ $MODE == 'slow' || $i != 'benchmark.t' ]]; then
./$i >> all.log 2>&1
fi
./$i >> all.log 2>&1
done
if [ $BAR == 1 ]; then