summaryrefslogtreecommitdiffstats
path: root/karm/test/version.sh
blob: 64fbc8fb06d9427eec27ae11fc7d6a116edcc2da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

# First test, just check version.

exec >>check.log 2>&1

TESTFILE="/tmp/testkarm1.ics"
VERSION="1.6.0"

source __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