initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / Allrun
blobbfc2241656e054ba7b3928382f7abf9ec9853067
1 #!/bin/sh
2 #------------------------------------------------------------------------------
3 # ========= |
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 # \\ / O peration |
6 # \\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
7 # \\/ M anipulation |
8 #------------------------------------------------------------------------------
9 # License
10 # This file is part of OpenFOAM.
12 # OpenFOAM is free software; you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by the
14 # Free Software Foundation; either version 2 of the License, or (at your
15 # option) any later version.
17 # OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
18 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 # for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with OpenFOAM; if not, write to the Free Software Foundation,
24 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 # Script
27 # Allrun
29 # Description
31 #------------------------------------------------------------------------------
33 cd ${0%/*} || exit 1 # run from this directory
35 # Source tutorial run functions
36 . $WM_PROJECT_DIR/bin/tools/RunFunctions
38 # logReport <logfile>
39 # Extracts useful info from log file.
40 logReport () {
41 case=`dirname $1 | sed s/"\(.*\)\.\/"/""/g`
42 app=`echo $1 | sed s/"\(.*\)\."/""/g`
43 appAndCase="Application $app - case $case"
45 fatalError=`grep "FOAM FATAL" $1`
46 UxSS=`grep -E "Ux[:| ]*solution singularity" $1`
47 UySS=`grep -E "Uy[:| ]*solution singularity" $1`
48 UzSS=`grep -E "Uz[:| ]*solution singularity" $1`
49 completed=`grep -E "^[\t ]*[eE]nd" $1`
51 if [ "$fatalError" ]
52 then
53 echo "$appAndCase: ** FOAM FATAL ERROR **"
54 return
55 elif [ "$UxSS" -a "$UySS" -a "$UzSS" ]
56 then
57 echo "$appAndCase: ** Solution singularity **"
58 return
59 elif [ "$completed" ]
60 then
61 completionTime=`tail -10 $log | grep Execution | cut -d= -f2 | sed 's/^[ \t]*//'`
62 if [ "$completionTime" ]
63 then
64 completionTime="in $completionTime"
66 echo "$appAndCase: completed $completionTime"
67 return
68 else
69 echo "$appAndCase: unconfirmed completion"
74 # Recursively run all tutorials
75 foamRunTutorials cases
78 # Analyse all log files
79 rm testLoopReport > /dev/null 2>&1 &
80 touch testLoopReport
81 for application in *
83 if [ -d $application ]
84 then
85 cd $application
86 for log in `find . -name "log.*" | xargs ls -rt`
88 logReport $log >> ../testLoopReport
89 done
90 echo "" >> ../testLoopReport
91 cd ..
93 done
95 find . -name "log.*" -exec cat {} \; >> logs
97 # ----------------------------------------------------------------- end-of-file