summaryrefslogtreecommitdiff
path: root/keyutils-1.5.6/tests/keyctl/requesting/noargs/runtest.sh
blob: 0070708f2671c77ff59fb54a7e5d77767d59afe9 (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
32
33
34
35
#!/bin/sh

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


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

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

marker "NO ARGS"
expect_args_error keyctl request
expect_args_error keyctl request2
expect_args_error keyctl prequest2

marker "ONE ARG"
expect_args_error keyctl request 0
expect_args_error keyctl request2 0
expect_args_error keyctl prequest2 0

marker "TWO ARGS"
expect_args_error keyctl request2 0 0

marker "FOUR ARGS"
expect_args_error keyctl request 0 0 0 0
expect_args_error keyctl prequest2 0 0 0 0

marker "FIVE ARGS"
expect_args_error keyctl request2 0 0 0 0 0

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

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