~ubuntu-branches/ubuntu/trusty/cctools/trusty-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Michael Hanke
  • Date: 2011-10-26 11:51:10 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20111026115110-5pc2qxp03chldcdi
Tags: 3.4.0-1
* New upstream release.
* Improve DEP5 compliance of debian/copyright.
* Added patch to make "starch" use python instead of python2 as interpreter.
* Tighten build-dependencies (added swig and m4).
* Enable MPI-support for work-queue.
* Move to dh_python2.
* Split Python-bindings for workqueue into a dedicated package and build
  them for all supported Python versions.

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=date.sfx
6
 
cfgfile=date.cfg
7
 
 
8
 
prepare()
9
 
{
10
 
    exec cat > $cfgfile << EOF
11
 
[starch]
12
 
executables = date
13
 
EOF
14
 
}
15
 
 
16
 
run()
17
 
{
18
 
    ${CCTOOLS_PYTHON} ./starch.py -C $cfgfile $sfxfile
19
 
    exec $sfxfile
20
 
}
21
 
 
22
 
clean()
23
 
{
24
 
    rm -f $sfxfile $cfgfile
25
 
    exit 0
26
 
}
27
 
 
28
 
dispatch $@