~ubuntu-branches/ubuntu/saucy/rheolef/saucy

« back to all changes in this revision

Viewing changes to nfem/ptst/space_tst.sh

  • Committer: Bazaar Package Importer
  • Author(s): Pierre Saramito
  • Date: 2011-03-23 11:14:26 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110323111426-cjvhey7lxt6077ty
Tags: 5.93-1
* New upstream release (minor changes):
  - some extra warning message deleted in heap_allocator
  - graphic output with mayavi2 fixed
  - add doc refman in .info and .pdf format

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
. "${TOP_SRCDIR}/config/loop_mpirun.sh"
26
26
 
27
27
status=0
 
28
 
28
29
L="
29
30
line-dom-v2
30
31
carre-100-dom-v2
 
32
carre-q-10-dom-v2
31
33
cube-10-dom-v2
32
 
"
33
 
for geo in $L; do
34
 
  loop_mpirun "./space_tst ${SRCDIR}/$geo.geo 2>/dev/null >/dev/null"
35
 
  if test $? -ne 0; then status=1; fi
36
 
done
 
34
cube-P-5-dom-v2
 
35
cube-H-5-dom-v2
 
36
"
 
37
for geo in $L; do
 
38
  for Pk in P1 P0 P1d; do
 
39
    loop_mpirun "./space_tst ${SRCDIR}/$geo.geo $Pk 2>/dev/null >/dev/null"
 
40
    if test $? -ne 0; then status=1; fi
 
41
  done
 
42
done
 
43
 
 
44
L="
 
45
carre-tq-10-dom-v2
 
46
extrude-TP-gmsh-dom-v2
 
47
"
 
48
for geo in $L; do
 
49
  for Pk in P1 P0; do
 
50
    loop_mpirun "./space_tst ${SRCDIR}/$geo.geo $Pk 2>/dev/null >/dev/null"
 
51
    if test $? -ne 0; then status=1; fi
 
52
  done
 
53
done
 
54
 
37
55
exit $status