~ubuntu-branches/debian/squeeze/sword/squeeze

« back to all changes in this revision

Viewing changes to tests/testsuite/runall.sh

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Glassey
  • Date: 2004-01-15 15:50:07 UTC
  • Revision ID: james.westby@ubuntu.com-20040115155007-n9mz4x0zxrs1isd3
Tags: upstream-1.5.7
ImportĀ upstreamĀ versionĀ 1.5.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
TESTSUITE="verseparsing"
 
4
 
 
5
for i in $TESTSUITE; do
 
6
        ./runtest.sh $i -q
 
7
        if [ $? -ne 0 ]; then
 
8
                echo $i: FAILED
 
9
                echo ""
 
10
                echo To see problems, try running:
 
11
                echo ./runtest.sh $i
 
12
                echo ""
 
13
                exit 1
 
14
        else
 
15
                echo $i: PASSED.
 
16
        fi
 
17
done
 
18
echo "ALL PASSED!"
 
19
exit 0
 
20
fi