diff options
Diffstat (limited to 'tdeunittest/tdeunittestmod')
-rwxr-xr-x | tdeunittest/tdeunittestmod | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tdeunittest/tdeunittestmod b/tdeunittest/tdeunittestmod new file mode 100755 index 00000000..f5872692 --- /dev/null +++ b/tdeunittest/tdeunittestmod @@ -0,0 +1,37 @@ +#!/bin/bash + +FOLDER="--folder $PWD" +QUERY="" + +while [ "$#" -gt 0 ] +do + case $1 in + -f|--folder) + FOLDER="--folder $2" + shift + ;; + -q|--query) + QUERY="--query $2" + shift + ;; + esac + # to process the next parameter + shift +done + +APP=`which tdeunittestguimodrunner` +if [ ! -x $APP ] +then + kdialog --error "Sorry, $APP is not a valid executable file." + exit 1; +fi + +DEBUGHELPER=`which tdeunittest_debughelper` +if [ -z $DEBUGHELPER ] +then + kdialog --error "Sorry, couldn't find the tdeunittest_debughelper script." + exit 3 +fi + +DCOPNAME="KUnitTestModRunner" +$APP --enable-dbgcap $FOLDER $QUERY 2>&1 | perl $DEBUGHELPER "$DCOPNAME-*" |