testfilter.sh: makes a test skeleton from nobug output testrunner: build and run a single test (autotools only)
5 lines
231 B
Bash
Executable file
5 lines
231 B
Bash
Executable file
#!/bin/sh
|
|
|
|
#test rig for running programs manually under libtool and valgrind
|
|
export NOBUG_LOG LUMIERA_PLUGIN_PATH
|
|
make ${CONCURRENCY_LEVEL:+-j$CONCURRENCY_LEVEL} "$1" && libtool --mode=execute valgrind --leak-check=full -q "./$@"
|