summaryrefslogtreecommitdiffstats
path: root/src/kash/tests/tick-1
blob: 1a64f14ca01e894ca728a4256c314991ee0b0974 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

VAR=`echo "echoed string"`
if test "$VAR" != "echoed string"; then
    echo "tick-1: failure: VAR=$VAR"
    exit 1
fi
echo 'tick-1: SUCCESS'
exit 0