summaryrefslogtreecommitdiff
path: root/keyutils-1.5.6/tests/keyctl/unlink/noargs/runtest.sh
blob: 1ed9f2680ec580f1edaaf9747ce022909fc5d547 (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
25
26
27
28
29
30
#!/bin/sh

. ../../../prepare.inc.sh
. ../../../toolbox.inc.sh


# ---- do the actual testing ----

result=PASS
echo "++++ BEGINNING TEST" >$OUTPUTFILE

# check that no arguments fails correctly
marker "NO ARGS"
expect_args_error keyctl unlink

if keyutils_older_than 1.5
then
    # check that one argument fails correctly
    marker "ONE ARGS"
    expect_args_error keyctl unlink 0
fi

# check that three arguments fails correctly
marker "THREE ARGS"
expect_args_error keyctl unlink 0 0 0

echo "++++ FINISHED TEST: $result" >>$OUTPUTFILE

# --- then report the results in the database ---
toolbox_report_result $TEST $result