summaryrefslogtreecommitdiffstats
path: root/karm/test/version.sh
blob: 6350e73cb366de1b18beab7768212f2633f17071 (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"

. ./__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