summaryrefslogtreecommitdiff
path: root/tests/keyctl/describing/noargs/runtest.sh
blob: fac4c498defd754028644eead72f24e008d94eb2 (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
#!/bin/bash

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


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

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

marker "NO ARGS"
expect_args_error keyctl describe
expect_args_error keyctl rdescribe

marker "TWO ARGS"
expect_args_error keyctl describe 0 0

marker "THREE ARGS"
expect_args_error keyctl rdescribe 0 0 0

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

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