These cases now check for a mesh in geometrically identical cases and copy rather than re-generate if possible. This reduces the run-time of the test loop by about 20 minutes.
16 lines
465 B
Bash
Executable File
16 lines
465 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Source tutorial clean functions
|
|
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
|
|
|
# Remove surface
|
|
rm -f constant/triSurface/DTC-scaled.stl.gz > /dev/null 2>&1
|
|
rm -rf constant/extendedFeatureEdgeMesh > /dev/null 2>&1
|
|
rm -f constant/triSurface/DTC-scaled.eMesh > /dev/null 2>&1
|
|
|
|
cleanCase
|
|
rm system/topoSetDict > /dev/null 2>&1
|
|
|
|
#------------------------------------------------------------------------------
|