File: t_return_code

package info (click to toggle)
sdcv 0.5.5-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 596 kB
  • sloc: cpp: 3,082; sh: 226; xml: 23; makefile: 10
file content (22 lines) | stat: -rwxr-xr-x 392 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

SDCV="$1"
TEST_DIR="$2"

unset SDCV_PAGER

test_return_code() {
    WORD=$1
    EXPECTED=$2
    $SDCV -e -n --data-dir "$TEST_DIR" -u "Test synonyms" $WORD > /dev/null
    RC=$?
    if [ $RC -ne $EXPECTED ]; then
        echo "Return code for $WORD should be '$EXPECTED' but was '$RC'"
        exit 1
    fi
}

test_return_code testawordy 0
test_return_code testawordies 2

exit 0