~ubuntu-branches/ubuntu/trusty/rheolef/trusty

« back to all changes in this revision

Viewing changes to skit/ptst2/mpi_boost_nonblocking_idxset_tst.sh

  • Committer: Package Import Robot
  • Author(s): Pierre Saramito
  • Date: 2012-04-06 09:12:21 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20120406091221-m58me99p1nxqui49
Tags: 6.0-1
* New upstream release 6.0 (major changes):
  - massively distributed and parallel support
  - full FEM characteristic method (Lagrange-Gakerkin method) support
  - enhanced users documentation 
  - source code supports g++-4.7 (closes: #667356)
* debian/control: dependencies for MPI distributed solvers added
* debian/rules: build commands simplified
* debian/librheolef-dev.install: man1/* to man9/* added
* debian/changelog: package description rewritted (closes: #661689)

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
NPROC_MAX=${NPROC_MAX-"7"}
25
25
. "${TOP_SRCDIR}/config/loop_mpirun.sh"
26
26
 
27
 
if test "$MPIRUN" = ""; then
28
 
  echo "      (skipped)"
29
 
else
 
27
#echo "    (skipped for foehn)" # TODO
 
28
#exit 0
 
29
 
 
30
if test "$MPIRUN" = "" || test "$NPROC_MAX" -lt 2; then
 
31
  echo "      skipped (requires np >= 2)"
 
32
else 
30
33
  run "$MPIRUN -np 2 ./mpi_boost_nonblocking_idxset_tst 2>/dev/null | sort -n | diff -w -B mpi_boost_nonblocking_idxset_tst.valid -"
 
34
  status=$?
 
35
  exit $status
31
36
fi