summaryrefslogtreecommitdiff
path: root/keyutils-1.5.6/tests/keyctl/instantiating/noargs/runtest.sh
blob: 8603818691abeace32f5e0f9aec8ccab6548e866 (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
36
#!/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 instantiate
expect_args_error keyctl pinstantiate
expect_args_error keyctl negate

marker "ONE ARG"
expect_args_error keyctl instantiate 0
expect_args_error keyctl pinstantiate 0
expect_args_error keyctl negate 0

marker "TWO ARGS"
expect_args_error keyctl instantiate 0 0
expect_args_error keyctl negate 0 0

marker "THREE ARGS"
expect_args_error keyctl pinstantiate 0 0 0

marker "FOUR ARGS"
expect_args_error keyctl instantiate 0 0 0 0
expect_args_error keyctl negate 0 0 0 0

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

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