~ubuntu-branches/ubuntu/lucid/ecasound2.2/lucid

« back to all changes in this revision

Viewing changes to manual-tests/run-all.sh

  • Committer: Bazaar Package Importer
  • Author(s): Junichi Uekawa
  • Date: 2008-09-26 09:58:52 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20080926095852-k3v9ewhmxpaltusw
Tags: 2.5.2-3
yodl 2.13.1 removed --unique-output option. Remove --unique-output
accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# ----------------------------------------------------------------------
 
2
# File: ecasound/manual-tests/run-all.sh
 
3
# License: GPL (see ecasound/{AUTHORS,COPYING})
 
4
# ----------------------------------------------------------------------
 
5
 
 
6
for i in `ls test-*.sh` ; do
 
7
  ./$i
 
8
  if test $? != 0; then
 
9
    break
 
10
  fi
 
11
done
 
12