summaryrefslogtreecommitdiff
path: root/keyutils-1.5.6/tests/keyctl/search/noargs/runtest.sh
blob: 5059eec7db472a0b4b558a5fdb3337e5fa1a277e (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
31
#!/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 search

# check that one argument fails correctly
marker "ONE ARGS"
expect_args_error keyctl search 0

# check that two arguments fails correctly
marker "TWO ARGS"
expect_args_error keyctl search 0 0

# check that five arguments fails correctly
marker "FIVE ARGS"
expect_args_error keyctl search 0 0 0 0 0

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

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