1 |
#!/bin/bash |
2 |
|
3 |
# $Id: autotest-scons 162 2005-11-11 00:09:59Z svn $ |
4 |
# An explicit testing script for esys using the scons build system |
5 |
|
6 |
# list of users to email test results to |
7 |
MAIL_RECIPIENTS="jgs@esscc.uq.edu.au gross@esscc.uq.edu.au cochrane@esscc.uq.edu.au elspeth@esscc.uq.edu.au matt@esscc.uq.edu.au" |
8 |
|
9 |
# modules to test |
10 |
TESTS="escript bruce finley" |
11 |
|
12 |
# the python tests to run |
13 |
FINLEY_PYTESTS="ImportTest.py finleyTest.py SimpleSolve.py GradTest.py RecTest.py test_linearPDEsOnFinley.py test_generators.py test_visualization_interface.py test_utilOnFinley.py test_symbolsOnFinley.py" |
14 |
ESCRIPT_PYTESTS="ImportTest.py BinaryOps.py UnaryOps.py SliceGetting.py SliceSetting.py MiscTests.py ArchiveTests.py escriptTest.py newEscriptTests.py DataVariableTests.py test_xml.py" |
15 |
BRUCE_PYTESTS="ImportTest.py BruceTest.py test_utilOnBruce.py test_symbolsOnBruce.py" |
16 |
|
17 |
PWD=`pwd` |
18 |
echo working in: $PWD |
19 |
|
20 |
# define compiler executable and library locations |
21 |
export PATH=/opt/intel/cmplrs/80.058/intel_cc_80/bin:$PATH |
22 |
export LD_LIBRARY_PATH=/opt/intel/cmplrs/80.058/intel_cc_80/lib |
23 |
|
24 |
# define python location |
25 |
export PATH=/raid2/tools/python-2.3.4/bin:$PATH |
26 |
|
27 |
# set library and openmp settings |
28 |
export LD_LIBRARY_PATH=$PWD/lib:/raid2/tools/boost/lib:$LD_LIBRARY_PATH |
29 |
export PYTHONPATH=$PWD |
30 |
export OMP_SCHEDULE="dynamic" |
31 |
export OMP_NUM_THREADS=4 |
32 |
export OMP_DYNAMIC=TRUE |
33 |
export OMP_NESTED=FALSE |
34 |
|
35 |
FAIL=0 |
36 |
|
37 |
echo cd $1 |
38 |
cd $1 |
39 |
if [ $? != 0 ] |
40 |
then |
41 |
echo couldnt cd $1 |
42 |
echo "couldnt cd $1" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
43 |
exit 1 |
44 |
fi |
45 |
|
46 |
echo running svn update |
47 |
svn update |
48 |
if [ $? != 0 ] |
49 |
then |
50 |
echo svn update failed |
51 |
echo "svn update failed" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
52 |
exit 2 |
53 |
fi |
54 |
|
55 |
echo running scons debug=1 |
56 |
scons debug=1 |
57 |
if [ $? != 0 ] |
58 |
then |
59 |
echo scons failed |
60 |
echo "scons failed - see autotest-scons logfile" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
61 |
exit 3 |
62 |
fi |
63 |
|
64 |
echo running bruce unit_tests |
65 |
cd bruce/test |
66 |
./unit_test-scons |
67 |
if [ $? != 0 ] |
68 |
then |
69 |
echo bruce unit_test failed |
70 |
echo "bruce unit_test failed - see autotest-scons logfile" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
71 |
FAIL=1 |
72 |
fi |
73 |
cd ../.. |
74 |
|
75 |
echo running escript unit_tests |
76 |
cd escript/test |
77 |
./unit_test-scons |
78 |
if [ $? != 0 ] |
79 |
then |
80 |
echo escript unit_test failed |
81 |
echo "escript unit_test failed - see autotest-scons logfile" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
82 |
FAIL=1 |
83 |
fi |
84 |
cd ../.. |
85 |
|
86 |
echo running finley unit_tests |
87 |
cd finley/test |
88 |
./unit_test-scons |
89 |
if [ $? != 0 ] |
90 |
then |
91 |
echo finley unit_test failed |
92 |
echo "finley unit_test failed - see autotest-scons logfile" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
93 |
FAIL=1 |
94 |
fi |
95 |
cd ../.. |
96 |
|
97 |
echo running esysUtils unit_tests |
98 |
cd esysUtils/test |
99 |
./unit_test-scons |
100 |
if [ $? != 0 ] |
101 |
then |
102 |
echo esysUtils unit_test failed |
103 |
echo "esysUtils unit_test failed - see autotest-scons logfile" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
104 |
FAIL=1 |
105 |
fi |
106 |
cd ../.. |
107 |
|
108 |
for module in $TESTS |
109 |
do |
110 |
echo "running python tests for: $module" |
111 |
cd $module/test/python |
112 |
if [ "$module" == "finley" ] |
113 |
then |
114 |
for pytest in $FINLEY_PYTESTS |
115 |
do |
116 |
echo "Running python test: $pytest" |
117 |
python $pytest |
118 |
if [ $? != 0 ] |
119 |
then |
120 |
echo Python Testing FAILED for $pytest in module $module |
121 |
echo "finley py_test: $pytest failed - see autotest-scons logfile" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
122 |
FAIL=1 |
123 |
fi |
124 |
done |
125 |
elif [ "$module" == "escript" ] |
126 |
then |
127 |
for pytest in $ESCRIPT_PYTESTS |
128 |
do |
129 |
echo "Running python test: $pytest" |
130 |
python $pytest |
131 |
if [ $? != 0 ] |
132 |
then |
133 |
echo Python Testing FAILED for $pytest in module $module |
134 |
echo "escript py_test: $pytest failed - see autotest-scons logfile" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
135 |
FAIL=1 |
136 |
fi |
137 |
done |
138 |
elif [ "$module" == "bruce" ] |
139 |
then |
140 |
for pytest in $BRUCE_PYTESTS |
141 |
do |
142 |
echo "Running python test: $pytest" |
143 |
python $pytest |
144 |
if [ $? != 0 ] |
145 |
then |
146 |
echo Python Testing FAILED for $pytest in module $module |
147 |
echo "bruce py_test: $pytest failed - see autotest-scons logfile" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
148 |
FAIL=1 |
149 |
fi |
150 |
done |
151 |
fi |
152 |
cd ../../.. |
153 |
done |
154 |
|
155 |
if [ $FAIL == 0 ] |
156 |
then |
157 |
echo success |
158 |
echo "success" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
159 |
fi |
160 |
exit 0 |