1 |
#!/bin/bash |
#!/bin/sh |
2 |
|
|
3 |
|
# |
4 |
|
# Submit a PBS job to run the tests |
5 |
|
# |
6 |
|
# Usage: autotest-scons # Short testing, only C++ tests |
7 |
|
# Usage: autotest-scons run_tests # Short testing, only C++ tests |
8 |
|
# Usage: autotest-scons all_tests # Long testing, C++ and python tests |
9 |
|
# |
10 |
|
# Copy this somewhere and run it every day via cron |
11 |
|
# |
12 |
|
# This file should be maintained in SVN as esys13/trunk/autotest-scons, |
13 |
|
# be sure to copy it there and commit after modification |
14 |
|
# |
15 |
|
|
16 |
|
# TODO: should try using the entire node: scons -j $NCPUS all_tests |
17 |
|
# I've been told this produces poor results...why? |
18 |
|
|
19 |
|
# Which tests should we run? |
20 |
|
target='run_tests' # Default scons target that runs the tests |
21 |
|
test "x$1" != "x" && target="$1" |
22 |
|
|
23 |
|
MAIL_RECIPIENTS="gross@esscc.uq.edu.au elspeth@esscc.uq.edu.au matt@esscc.uq.edu.au robert.woodcock@csiro.au Peter.Hornby@csiro.au k.steube@uq.edu.au" |
24 |
|
# MAIL_RECIPIENTS="k.steube@uq.edu.au" |
25 |
|
|
26 |
|
RunDate=`date '+%Y_%m_%d'` # Time stamp for log file names |
27 |
|
|
28 |
|
WorkDir=/raid3/ksteube/AutoTests |
29 |
|
cd $WorkDir |
30 |
|
|
31 |
|
# Where to put the output of scons run_tests |
32 |
|
out_file="$WorkDir/Logs/$RunDate.test.output" |
33 |
|
|
34 |
|
# Save the name of this script |
35 |
|
SCRIPT_NAME=$0 |
36 |
|
|
37 |
# $Id: autotest-scons 162 2005-11-11 00:09:59Z svn $ |
# Below here \$variable means I want the variable interpreted when PBS runs the job, not when the job is submitted |
38 |
# An explicit testing script for esys using the scons build system |
# Similarly for \`...\` |
39 |
|
|
40 |
|
# Write the PBS script to run the tests |
41 |
|
cat << EOF > Logs/$RunDate.pbs.script.sh |
42 |
|
#!/bin/bash |
43 |
|
|
44 |
# list of users to email test results to |
#PBS -q q1 |
45 |
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" |
#PBS -l ncpus=2 |
46 |
|
#PBS -o $RunDate.pbs.stdout |
47 |
|
#PBS -e $RunDate.pbs.stderr |
48 |
|
|
49 |
|
echo "PBS_JOBNAME \$PBS_JOBNAME" |
50 |
|
echo "PBS_JOBID \$PBS_JOBID" |
51 |
|
echo "PBS_QUEUE \$PBS_QUEUE" |
52 |
|
echo "NCPUS \$NCPUS" |
53 |
|
echo "USER \$USER" |
54 |
|
echo "PBS_O_HOST \$PBS_O_HOST" |
55 |
|
echo "PBS_O_WORKDIR \$PBS_O_WORKDIR" |
56 |
|
echo "PBS_O_SHELL \$PBS_O_SHELL" |
57 |
|
echo "" |
58 |
|
echo "" |
59 |
|
|
60 |
|
|
61 |
|
|
62 |
|
START=\`date '+%Y/%m/%d %H:%M'\` |
63 |
|
|
64 |
|
finish () { |
65 |
|
END=\`date '+%Y/%m/%d %H:%M'\` |
66 |
|
cat << END_MSG | mail -s "ESYS_TESTS $target $RunDate \$1" $MAIL_RECIPIENTS |
67 |
|
\$2. |
68 |
|
The tests ran from \$START to \$END. |
69 |
|
See the log files in $WorkDir/Logs for more information. |
70 |
|
This mail was sent by $SCRIPT_NAME |
71 |
|
running as \$USER on \`hostname\`. |
72 |
|
END_MSG |
73 |
|
test "x$1" = "FAIL" && exit 1 |
74 |
|
exit 0 |
75 |
|
} |
76 |
|
|
77 |
|
|
78 |
|
cd $WorkDir || finish FAILURE "Could not cd to WorkDir $WorkDir" |
79 |
|
|
80 |
|
# Create an empty out_file |
81 |
|
cat /dev/null > $out_file || finish FAILURE "Could not create out_file $out_file" |
82 |
|
|
83 |
|
umask 022 |
84 |
|
|
85 |
|
test -d sandbox.$RunDate && finish FAILURE "Today's sandbox already exists" |
86 |
|
mkdir sandbox.$RunDate || finish FAILURE "Could not mkdir sandbox" |
87 |
|
cd sandbox.$RunDate || finish FAILURE "Could not cd to sandbox" |
88 |
|
|
89 |
|
echo "Checking out esys13/trunk" |
90 |
|
svn checkout svn+ssh://shake200.esscc.uq.edu.au/home/www_svn/repos/esys13/trunk >> $out_file 2>&1 || finish FAILURE "Could not check out esys13/trunk" |
91 |
|
|
92 |
|
# Load modules |
93 |
|
. /opt/modules/default/init/bash |
94 |
|
module use /raid2/matt/modules/modulefiles |
95 |
|
module use /raid2/toolspp4/modulefiles/gcc-3.3.6 |
96 |
|
module use /usr/share/modules/modulefiles |
97 |
|
module load esys/env # Matt's recommended modules |
98 |
|
module load doxygen/1.4.6 |
99 |
|
# The next line is to avoid /raid3/ksteube/AutoTests/sandbox.2006_06_17/trunk/build/posix/bruce/test/bruce_UnitTest: error while loading shared libraries: libboost_python-mt-d.so.1.33.0: cannot open shared object file: No such file or directory |
100 |
|
module load boost/1.33.0/python-2.4.1 |
101 |
|
|
102 |
|
|
103 |
|
# Had to request 2 CPUs, but only use one for the tests |
104 |
|
export OMP_NUM_THREADS=1 |
105 |
|
|
106 |
|
# Run the tests |
107 |
|
echo "Running the tests" |
108 |
|
cd trunk || finish FAILURE "Could not cd to trunk" |
109 |
|
scons $target >> $out_file 2>&1 || finish FAILURE "Could not run scons $target" |
110 |
|
|
111 |
|
# Delete files older than 21 days |
112 |
|
find $WorkDir -atime +21 -exec rm -f {} \; |
113 |
|
|
114 |
|
# Clean up the sandbox |
115 |
|
cd $WorkDir || finish FAILURE "Could not cd to clean up WorkDir $WorkDir" |
116 |
|
/bin/rm -rf sandbox.$RunDate || finish FAILURE "Could not delete sandbox" |
117 |
|
|
118 |
|
finish SUCCESS "Successfully ran 'scons $target', see Logs in $WorkDir on ess" |
119 |
|
|
120 |
|
EOF |
121 |
|
|
122 |
|
# cd to the logs area so the PBS logs are deposited there |
123 |
|
cd $WorkDir/Logs |
124 |
|
|
125 |
|
# Submit the job |
126 |
|
. /opt/modules/default/init/sh |
127 |
|
module load pbspro |
128 |
|
qsub -S /bin/bash $RunDate.pbs.script.sh > /dev/null |
129 |
|
|
|
# the python tests to run |
|
|
BRUCE_PYTESTS="ImportTest.py BruceTest.py test_utilOnBruce.py test_symbolsOnBruce.py" |
|
|
ESCRIPT_PYTESTS="ImportTest.py BinaryOps.py UnaryOps.py SliceGetting.py SliceSetting.py MiscTests.py ArchiveTests.py newEscriptTests.py DataVariableTests.py test_xml.py insituTests.py pdetoolsTest.py s2.py" |
|
|
FINLEY_PYTESTS="ImportTest.py finleyTest.py SimpleSolve.py RecTest.py test_linearPDEsOnFinley.py test_generators.py test_visualization_interface.py test_utilOnFinley.py test_symbolsOnFinley.py" |
|
|
|
|
|
echo "===> cd $1" |
|
|
cd $1 |
|
|
if [ $? != 0 ] |
|
|
then |
|
|
echo "couldnt cd $1" |
|
|
echo "couldnt cd $1" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
|
|
exit 1 |
|
|
fi |
|
|
|
|
|
PWD=`pwd` |
|
|
echo "===> working in: $PWD" |
|
|
|
|
|
# define compiler executable and library locations |
|
|
export PATH=/opt/intel/cmplrs/80.058/intel_cc_80/bin:$PATH |
|
|
export LD_LIBRARY_PATH=/opt/intel/cmplrs/80.058/intel_cc_80/lib |
|
|
|
|
|
# define python location |
|
|
export PATH=/raid2/tools/python-2.3.4/bin:$PATH |
|
|
|
|
|
# set library and openmp settings |
|
|
export LD_LIBRARY_PATH=$PWD/lib:/raid2/tools/boost/lib:$LD_LIBRARY_PATH |
|
|
export PYTHONPATH=$PWD |
|
|
export OMP_SCHEDULE="dynamic" |
|
|
export OMP_NUM_THREADS=4 |
|
|
export OMP_DYNAMIC=TRUE |
|
|
export OMP_NESTED=FALSE |
|
|
|
|
|
echo "===> svn update" |
|
|
svn update |
|
|
if [ $? != 0 ] |
|
|
then |
|
|
echo "svn update failed" |
|
|
echo "svn update failed" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
|
|
exit 2 |
|
|
fi |
|
|
|
|
|
echo "===> scons building esys" |
|
|
scons debug=1 |
|
|
if [ $? != 0 ] |
|
|
then |
|
|
echo "scons build failed" |
|
|
echo "scons build failed" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
|
|
exit 3 |
|
|
fi |
|
|
|
|
|
echo "===> building unit_tests" |
|
|
scons debug=1 build_tests |
|
|
if [ $? != 0 ] |
|
|
then |
|
|
echo "unit_test build failed" |
|
|
echo "unit_test build failed" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
|
|
exit 3 |
|
|
fi |
|
|
|
|
|
FAIL=0 |
|
|
|
|
|
echo "===> running unit_tests" |
|
|
scons debug=1 run_tests |
|
|
if [ $? != 0 ] |
|
|
then |
|
|
echo "unit_testing failed" |
|
|
echo "unit_test failed" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
|
|
FAIL=1 |
|
|
fi |
|
|
|
|
|
cd escript/test/python |
|
|
for pytest in $ESCRIPT_PYTESTS |
|
|
do |
|
|
echo "===>running escript python test: $pytest" |
|
|
python $pytest |
|
|
if [ $? != 0 ] |
|
|
then |
|
|
echo "python testing failed for $pytest in module $module" |
|
|
echo "escript py_test: $pytest failed" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
|
|
FAIL=1 |
|
|
fi |
|
|
done |
|
|
cd ../../.. |
|
|
|
|
|
cd finley/test/python |
|
|
for pytest in $FINLEY_PYTESTS |
|
|
do |
|
|
echo "running finley python test: $pytest" |
|
|
python $pytest |
|
|
if [ $? != 0 ] |
|
|
then |
|
|
echo "python testing failed for $pytest in module $module" |
|
|
echo "finley py_test: $pytest failed" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
|
|
FAIL=1 |
|
|
fi |
|
|
done |
|
|
cd ../../.. |
|
|
|
|
|
cd bruce/test/python |
|
|
for pytest in $BRUCE_PYTESTS |
|
|
do |
|
|
echo "running bruce python test: $pytest" |
|
|
python $pytest |
|
|
if [ $? != 0 ] |
|
|
then |
|
|
echo "python testing failed for $pytest in module $module" |
|
|
echo "bruce py_test: $pytest failed" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
|
|
FAIL=1 |
|
|
fi |
|
|
done |
|
|
cd ../../.. |
|
|
|
|
|
if [ $FAIL == 0 ] |
|
|
then |
|
|
echo success |
|
|
echo "success" | mail -s "esys autotest-scons results" $MAIL_RECIPIENTS |
|
|
fi |
|
|
exit 0 |
|