summaryrefslogtreecommitdiff
path: root/keyutils-1.5.6/tests/keyctl/permitting/noargs/runtest.sh
blob: 89971e13f132ff64e40016c9246d910e4e0eb956 (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

marker "NO ARGS"
expect_args_error keyctl read
expect_args_error keyctl pipe
expect_args_error keyctl print

marker "ONE ARG"
expect_args_error keyctl chown 0
expect_args_error keyctl chgrp 0
expect_args_error keyctl setperm 0

marker "THREE ARGS"
expect_args_error keyctl chown 0 0 0
expect_args_error keyctl chgrp 0 0 0
expect_args_error keyctl setperm 0 0 0

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

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