2 #------------------------------------------------------------------------------
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
6 # \\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
8 #------------------------------------------------------------------------------
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
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
31 #------------------------------------------------------------------------------
33 cd ${0%/*} ||
exit 1 # run from this directory
35 # Source tutorial run functions
36 .
$WM_PROJECT_DIR/bin
/tools
/RunFunctions
39 # Extracts useful info from log file.
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`
53 echo "$appAndCase: ** FOAM FATAL ERROR **"
55 elif [ "$UxSS" -a "$UySS" -a "$UzSS" ]
57 echo "$appAndCase: ** Solution singularity **"
61 completionTime
=`tail -10 $log | grep Execution | cut -d= -f2 | sed 's/^[ \t]*//'`
62 if [ "$completionTime" ]
64 completionTime
="in $completionTime"
66 echo "$appAndCase: completed $completionTime"
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 &
83 if [ -d $application ]
86 for log
in `find . -name "log.*" | xargs ls -rt`
88 logReport
$log >> ..
/testLoopReport
90 echo "" >> ..
/testLoopReport
95 find .
-name "log.*" -exec cat {} \
; >> logs
97 # ----------------------------------------------------------------- end-of-file