~ubuntu-branches/ubuntu/hardy/sigscheme/hardy-proposed

« back to all changes in this revision

Viewing changes to runtest.sh

  • Committer: Bazaar Package Importer
  • Author(s): NIIBE Yutaka
  • Date: 2006-05-23 21:46:41 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060523214641-6ix4gz34wpiehub8
Tags: 0.5.0-2
* debian/control (Build-Depends): Added ruby.
  Thanks to Frederik Schueler.  Closes: #368571
* debian/rules (clean): invoke 'distclean' instead of 'clean'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
SSCM=src/sscm
 
4
 
 
5
 
 
6
echo "[ Run Test ported from Bigloo]"
 
7
for test in test/bigloo-*.scm
 
8
do
 
9
  echo "Running test $test..."
 
10
  $SSCM $test
 
11
  echo
 
12
done
 
13
 
 
14
echo "[ Run Test ported from Gauche ]"
 
15
for test in test/gauche-*.scm
 
16
do
 
17
  echo "Running test $test..."
 
18
  $SSCM $test
 
19
  echo
 
20
done
 
21
 
 
22
echo "[ Run SigScheme Test ]"
 
23
for test in `ls test/test-*.scm | grep -v test-tail-rec\.scm`
 
24
do
 
25
  echo "Running test $test..."
 
26
  $SSCM $test
 
27
  echo
 
28
done