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

« back to all changes in this revision

Viewing changes to nfem/quadrature/gauss_radau_chebyschev_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 "    ./gauss_radau_chebyschev_tst ..."
24
26
for R in 1 2 3 4 5 6 7 8; do
25
 
    #echo "    ./gauss_radau_chebyschev_tst $R"
26
 
    ./gauss_radau_chebyschev_tst $R >/dev/null 2>/dev/null
27
 
    if test $? -ne 0; then echo "      *NO*"; status=1; fi
 
27
    run "./gauss_radau_chebyschev_tst $R >/dev/null 2>/dev/null"
 
28
    if test $? -ne 0; then status=1; fi
28
29
done
29
30
exit $status
30
 
 
31