You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdesdk/tdeunittest/tdeunittest

20 lines
361 B

#!/bin/bash
export APP=$1
export DCOPNAME=$2
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
$APP 2>&1 | perl $DEBUGHELPER "$DCOPNAME-*"