~ubuntu-branches/ubuntu/raring/rheolef/raring-proposed

« back to all changes in this revision

Viewing changes to nfem/quadrature/jacobi_roots_tst.sh

  • Committer: Package Import Robot
  • Author(s): Pierre Saramito, Pierre Saramito, Sylvestre Ledru
  • Date: 2012-05-14 14:02:09 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120514140209-dzbdlidkotyflf9e
Tags: 6.1-1
[ Pierre Saramito ]
* New upstream release 6.1 (minor changes):
  - support arbitrarily polynomial order Pk
  - source code supports g++-4.7 (closes: #671996)

[ Sylvestre Ledru ]
* update of the watch file

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20
20
#
21
21
# -------------------------------------------------------------------------
 
22
TOP_SRCDIR=${TOP_SRCDIR-"../.."}
 
23
. "${TOP_SRCDIR}/config/loop_mpirun.sh"
 
24
 
22
25
status=0
23
 
echo "    ./jacobi_roots_tst ..."
24
26
for R in 1 2 3 4 5 6 7 8; do
25
27
  for alpha in 0 1 2 3 4 5 6 7 8; do
26
28
    for beta in 0 1 2 3 4 5 6 7 8; do
27
 
        #echo "    ./jacobi_roots_tst $R $alpha $beta"
28
 
        ./jacobi_roots_tst $R $alpha $beta >/dev/null 2>/dev/null
29
 
        if test $? -ne 0; then echo "      *NO*"; status=1; fi
 
29
        run "./jacobi_roots_tst $R $alpha $beta >/dev/null 2>/dev/null"
 
30
        if test $? -ne 0; then status=1; fi
30
31
    done
31
32
  done
32
33
done
33
34
exit $status
34