openfoam/tutorials/mesh/foamyHexMesh/Allrun
Mark Olesen fe140cd6c5 TUT: test mode not respected (closes #710)
- now replaced 'if ! isTest' with 'if notTest' for most cases.
2018-02-20 12:54:44 +01:00

19 lines
549 B
Bash
Executable File

#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
. $WM_PROJECT_DIR/bin/tools/RunFunctions # Tutorial run functions
# Any cases that are links to solver test cases and are run when the Allrun
# scripts of those solvers are run. This script avoids meshing these cases
# twice.
( cd blob && ./Allrun $* )
( cd simpleShapes && ./Allrun $* )
if notTest $@
then
( cd flange && ./Allrun $* )
( cd mixerVessel && ./Allrun $* )
fi
#------------------------------------------------------------------------------