16 lines
389 B
Bash
Executable File
16 lines
389 B
Bash
Executable File
#!/bin/sh
|
|
|
|
UNIT_TEST=$1
|
|
|
|
shift
|
|
|
|
echo "Running ./test-interactive $UNIT_TEST $@"
|
|
echo ""
|
|
echo "NOTE: For debugging purposes, you can run this single test as follows:"
|
|
echo "$ libtool --mode=execute \\"
|
|
echo " gdb --eval-command=\"b `echo $UNIT_TEST|tr '-' '_'`_main\" \\"
|
|
echo " --args ./test-interactive $UNIT_TEST"
|
|
|
|
@abs_builddir@/test-interactive $UNIT_TEST "$@"
|
|
|