~ubuntu-branches/ubuntu/maverick/uim/maverick

« back to all changes in this revision

Viewing changes to sigscheme/runtest.sh

  • Committer: Bazaar Package Importer
  • Author(s): Masahito Omote
  • Date: 2008-05-18 22:18:10 UTC
  • mfrom: (1.1.8 upstream)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20080518221810-4d2rd0ca18xnu8kc
Tags: 1:1.5.1-1
* New upstream release
* uim-qt3: Add uim inputcontext plugin for Qt3. And due to uim-*-qt are
  not supported in Qt4 for now officially, uim-*-qt are contained in
  this package.
* uim-qt: Depends uim-qt3 because of described above.
* libuim6: New package for syncing with upstream upgrade soversion.
* 05_qmake_bug_workaround.dpatch: patch for the workaround that qmake does
  not add link option against other libraries(e.g. -lX11) by default.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
2
 
3
 
SSCM=src/sscm
 
3
SSCM="src/sscm --system-load-path $PWD/lib"
4
4
 
5
5
if test "x$1" != "x"; then
6
6
  while test "$#" -ne 0; do
17
17
}
18
18
 
19
19
echo "[ Run single ported tests ]"
20
 
for test in test/test-r4rs.scm #test/r5rs_pitfall_sscm.scm
 
20
for test in test/stone-srfi1.scm test/oleg-srfi2.scm test/panu-srfi69.scm #test/r5rs_pitfall.scm
 
21
do
 
22
  run_test $test
 
23
done
 
24
 
 
25
echo "[ Run tests ported from SCM]"
 
26
for test in test/scm-*.scm
21
27
do
22
28
  run_test $test
23
29
done
35
41
done
36
42
 
37
43
echo "[ Run SigScheme tests ]"
38
 
for test in `ls test/test-*.scm | egrep -v 'test-(tail-rec|r4rs)\.scm'`
 
44
for test in `ls test/test-*.scm | egrep -v 'test-tail-rec\.scm'`
39
45
do
40
46
  run_test $test
41
47
done