mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
RunFunctions: Added "isTest()" argument parsing function
tutorials: Updated Allrun scripts to propagate the "-test" option
tutorials: Removed the lower Alltest scripts and updated the Allrun to
use the "isTest()" function to handle test-specific operation
18 lines
365 B
Bash
Executable File
18 lines
365 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
|
|
(
|
|
cd flange || exit
|
|
./Allrun $*
|
|
)
|
|
|
|
exit 0
|
|
|
|
# These cases are links to solver test cases and are run when the Allrun
|
|
# scripts of those solvers are run.
|
|
|
|
# This dummy Allrun script avoids meshing these cases twice.
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|