~ubuntu-branches/ubuntu/vivid/cctools/vivid

« back to all changes in this revision

Viewing changes to python/starch/test/TR_example.sh

  • Committer: Bazaar Package Importer
  • Author(s): Michael Hanke
  • Date: 2011-05-07 09:05:00 UTC
  • Revision ID: james.westby@ubuntu.com-20110507090500-lqpmdtwndor6e7os
Tags: upstream-3.3.2
ImportĀ upstreamĀ versionĀ 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
. ../../dttools/src/test_runner.common.sh
 
4
 
 
5
sfxfile=test/example.sfx
 
6
cfgfile=test/example.cfg
 
7
 
 
8
prepare()
 
9
{
 
10
    exit 0
 
11
}
 
12
 
 
13
run()
 
14
{
 
15
    ${CCTOOLS_PYTHON} ./starch.py -C $cfgfile $sfxfile
 
16
    exec $sfxfile
 
17
}
 
18
 
 
19
clean()
 
20
{
 
21
    rm -f $sfxfile
 
22
    exit 0
 
23
}
 
24
 
 
25
dispatch $@