summaryrefslogtreecommitdiff
path: root/keyutils-1.5.6/tests/keyctl/padd/noargs/runtest.sh
blob: 97547f37a250afff205d8f312290330ac559f004 (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 "ADD NO ARGS"
expect_args_error keyctl padd

# check that one argument fails correctly
marker "ADD ONE ARG"
expect_args_error keyctl padd user

# check that two arguments fail correctly
marker "ADD TWO ARGS"
expect_args_error keyctl padd user wibble

# check that four arguments fail correctly
marker "ADD FOUR ARGS"
expect_args_error keyctl padd user wibble @s x

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

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