~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/isorropia/test/run_tests

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme, Johannes Ring
  • Date: 2009-12-13 12:53:22 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091213125322-in0nrdjc55deqsw9
Tags: 10.0.3.dfsg-1
[Christophe Prud'homme]
* New upstream release

[Johannes Ring]
* debian/patches/libname.patch: Add prefix 'libtrilinos_' to all
  libraries. 
* debian/patches/soname.patch: Add soversion to libraries.
* debian/watch: Update download URL.
* debian/control:
  - Remove python-numeric from Build-Depends (virtual package).
  - Remove automake and autotools from Build-Depends and add cmake to
    reflect switch to CMake.
  - Add python-support to Build-Depends.
* debian/rules: 
  - Cleanup and updates for switch to CMake.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
if [ ${#} != 3 ] ; then \
 
4
echo " ";\
 
5
echo " usage: run_tests <path-to-Trilinos> <build-sub-dir> <mpi-launch-cmd>";\
 
6
echo " ";\
 
7
echo " example: % runtests /home/me/Trilinos bld_linux 'mpirun -np ' ";\
 
8
echo " ";\
 
9
echo "  (Note the quotes around the mpirun command, since it contains spaces)";\
 
10
echo " ";\
 
11
exit 1;\
 
12
fi
 
13
 
 
14
trilinosdir=${1}
 
15
builddir=${2}
 
16
mpiruncmd=${3}
 
17
 
 
18
perl ../../../commonTools/test/utilities/runtests \
 
19
   --comm=mpi --category=FRAMEWORK --packages=isorropia \
 
20
   --trilinos-dir=${trilinosdir} \
 
21
   --build-dir=${builddir} \
 
22
   --mpi-go="${mpiruncmd}" \
 
23
   --output-dir=${trilinosdir}/${builddir}/packages/isorropia/test
 
24