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

« back to all changes in this revision

Viewing changes to nfem/ptst/field_indirect_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:
29
29
L="
30
30
line-dom-v2
31
31
carre-bamg-v2
32
 
cube-gmsh-v2
 
32
carre-bamg-q-dom-v2
 
33
carre-tq-10-dom-v2
 
34
cube-dom-v2
 
35
cube-H-6-dom-v2
 
36
cube-P-5-dom-v2
 
37
my_cube_TP-5-v2
 
38
my_cube_PH-5-v2
 
39
my_cube_TPH-5-v2
33
40
"
 
41
 
34
42
for geo in $L; do
35
 
  loop_mpirun "./field_indirect_tst ${SRCDIR}/$geo.geo 2>/dev/null | diff $SRCDIR/field_indirect-$geo-P1.field - >/dev/null"
 
43
 for Pk in P1 P2 P3; do
 
44
  loop_mpirun "./field_indirect_tst ${SRCDIR}/$geo.geo $Pk left 1e-8 2>/dev/null | diff $SRCDIR/field_indirect-$geo-$Pk.field - >/dev/null"
36
45
  if test $? -ne 0; then status=1; fi
 
46
 done
37
47
done
 
48
 
38
49
exit $status