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 |
|
7 |
# list of users to email test results to |
8 |
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" |
9 |
|
10 |
# modules to test |
11 |
TESTS="escript bruce finley" |
12 |
|
13 |
# the python tests to run |
14 |
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" |
15 |
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" |
16 |
BRUCE_PYTESTS="ImportTest.py BruceTest.py test_utilOnBruce.py test_symbolsOnBruce.py" |
17 |
|
18 |
|
19 |
# define compiler executable and library locations |
20 |
export PATH=/opt/intel/cmplrs/80.058/intel_cc_80/bin:$PATH |
21 |
export LD_LIBRARY_PATH=/opt/intel/cmplrs/80.058/intel_cc_80/lib |
22 |
|
23 |
echo cd $1 |
24 |
cd $1 |
25 |
if [ $? != 0 ] |
26 |
then |
27 |
echo couldnt cd $1 |
28 |
echo "couldnt cd $1" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
29 |
exit 1 |
30 |
fi |
31 |
|
32 |
echo loading esys setup |
33 |
. ~jgs/bin/scons_setup |
34 |
if [ $? != 0 ] |
35 |
then |
36 |
echo couldnt load scons setup |
37 |
echo "couldnt load scons setup" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
38 |
exit 2 |
39 |
fi |
40 |
|
41 |
echo running svn update |
42 |
svn update |
43 |
if [ $? != 0 ] |
44 |
then |
45 |
echo svn update failed |
46 |
echo "svn update failed" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
47 |
exit 3 |
48 |
fi |
49 |
|
50 |
echo running scons debug=1 |
51 |
scons debug=1 |
52 |
if [ $? != 0 ] |
53 |
then |
54 |
echo scons failed |
55 |
echo "scons failed - see autotest-scons logfile" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
56 |
exit 5 |
57 |
fi |
58 |
|
59 |
echo running bruce unit_tests |
60 |
cd bruce/test |
61 |
./unit_test-scons |
62 |
if [ $? != 0 ] |
63 |
then |
64 |
echo bruce unit_test failed |
65 |
echo "bruce unit_test failed - see autotest-scons logfile" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
66 |
#exit 6 |
67 |
fi |
68 |
cd ../.. |
69 |
|
70 |
echo running escript unit_tests |
71 |
cd escript/test |
72 |
./unit_test-scons |
73 |
if [ $? != 0 ] |
74 |
then |
75 |
echo escript unit_test failed |
76 |
echo "escript unit_test failed - see autotest-scons logfile" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
77 |
#exit 6 |
78 |
fi |
79 |
cd ../.. |
80 |
|
81 |
echo running finley unit_tests |
82 |
cd finley/test |
83 |
./unit_test-scons |
84 |
if [ $? != 0 ] |
85 |
then |
86 |
echo finley unit_test failed |
87 |
echo "finley unit_test failed - see autotest-scons logfile" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
88 |
#exit 6 |
89 |
fi |
90 |
cd ../.. |
91 |
|
92 |
echo running esysUtils unit_tests |
93 |
cd esysUtils/test |
94 |
./unit_test-scons |
95 |
if [ $? != 0 ] |
96 |
then |
97 |
echo esysUtils unit_test failed |
98 |
echo "esysUtils unit_test failed - see autotest-scons logfile" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
99 |
#exit 6 |
100 |
fi |
101 |
cd ../.. |
102 |
|
103 |
export LD_LIBRARY_PATH=/raid2/tools/python-2.3.4/lib:$LD_LIBRARY_PATH |
104 |
export PYTHON_INCLUDE=/raid2/tools/python-2.3.4/include/python2.3 |
105 |
export PYTHON_LIB_PATH=/raid2/tools/python-2.3.4/lib |
106 |
export PATH=/raid2/tools/python-2.3.4/bin:$PATH |
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 failed - see autotest-scons logfile" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
122 |
#exit 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 failed - see autotest-scons logfile" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
135 |
#exit 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 failed - see autotest-scons logfile" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
148 |
#exit 1 |
149 |
fi |
150 |
done |
151 |
fi |
152 |
cd ../../.. |
153 |
done |
154 |
|
155 |
echo success |
156 |
echo "success" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
157 |
exit 0 |