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

« back to all changes in this revision

Viewing changes to nfem/ptst/field_expr2_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-q-10-dom-v2
 
34
cube-10-dom-v2
 
35
cube-H-6-dom-v2
 
36
cube-P-5-dom-v2
 
37
my_cube_PH-5-v2
 
38
my_cube_TP-5-v2
 
39
my_cube_TPH-5-v2
33
40
"
34
 
 
35
41
for geo in $L; do
36
 
  loop_mpirun "./field_expr2_tst ${SRCDIR}/$geo right 2>/dev/null | diff interpolate_dom-$geo-right-P1.field - >/dev/null"
 
42
 for Pk in P1 P2 P3; do
 
43
  loop_mpirun "./field_expr2_tst ${SRCDIR}/$geo $Pk right 2>/dev/null | diff interpolate_dom-$geo-right-$Pk.field - >/dev/null"
37
44
  if test $? -ne 0; then status=1; fi
 
45
 done
38
46
done
39
47
 
40
48
exit $status