~svn/ubuntu/oneiric/subversion/ppa

« back to all changes in this revision

Viewing changes to neon/test/common/run.sh

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-12-13 17:57:16 UTC
  • mfrom: (1.1.6 upstream) (0.1.3 etch)
  • Revision ID: james.westby@ubuntu.com-20061213175716-2ysv6z4w5dpa2r2f
Tags: 1.4.2dfsg1-2ubuntu1
* Merge with Debian unstable; remaining changes:
  - Create pot file on build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
rm -f debug.log
4
 
rm -f child.log
5
 
 
6
 
# for shared builds.
7
 
LD_LIBRARY_PATH=../src/.libs:$LD_LIBRARY_PATH
8
 
export LD_LIBRARY_PATH
9
 
 
10
 
for f in $*; do
11
 
    if ./$f; then
12
 
        :
13
 
    else
14
 
        echo FAILURE
15
 
        exit 1
16
 
    fi
17
 
done
18
 
 
19
 
exit 0