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
14 lines
233 B
Bash
Executable file
14 lines
233 B
Bash
Executable file
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
(
|
|
cd throttle || exit
|
|
./Allrun $*
|
|
)
|
|
|
|
(
|
|
cd throttle3D || exit
|
|
./Allrun $*
|
|
)
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|