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.
25 lines
336 B
25 lines
336 B
#!/bin/sh
|
|
|
|
# First test, just check version.
|
|
|
|
exec >>check.log 2>&1
|
|
|
|
TESTFILE="/tmp/testkarm1.ics"
|
|
VERSION="1.6.0"
|
|
|
|
. ./__lib.sh
|
|
|
|
set_up
|
|
|
|
RVAL=`dcop $DCOPID KarmDCOPIface version 2>/dev/null`
|
|
|
|
tear_down
|
|
|
|
if [ "$RVAL" = "$VERSION" ]; then
|
|
echo "PASS $0"
|
|
exit 0;
|
|
else
|
|
echo "FAIL $0: got /$RVAL/, expected /$VERSION/"
|
|
exit 1;
|
|
fi
|