9 lines
278 B
Bash
9 lines
278 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# for use with valgrind commandline parameter 1 is passed to TestRunner / Selftest
|
||
|
|
# provide either --valgrind or --valgrindlc (or nothing) depending on your needs
|
||
|
|
|
||
|
|
pushd . \
|
||
|
|
&& cd ~/secondo/bin/ && TestRunner $1 -i ~/secondo/Algebras/Spatial3D/Spatial3D.test
|
||
|
|
popd
|