summaryrefslogtreecommitdiff
path: root/keyutils-1.5.6/tests/keyctl/revoke/bad-args/runtest.sh
blob: a3c9b44ce650c55ee2242989f6384490770b8803 (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/sh

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


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

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

# check that a bad key ID fails correctly
marker "CHECK BAD KEY ID"
revoke_key --fail 0
expect_error EINVAL

# check that a non-existent key ID fails correctly
marker "CHECK NON-EXISTENT KEY ID"
revoke_key --fail @t
expect_error ENOKEY

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

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