summaryrefslogtreecommitdiff
path: root/keyutils-1.5.6/tests/keyctl/session/bad-args/runtest.sh
blob: e3b6f71956034cbf2f993c5340835df40d71b96c (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 an empty keyring name fails correctly
marker "SESSION WITH EMPTY KEYRING NAME"
new_session --fail ""
expect_error EINVAL

# check that an overlong keyring name fails correctly
marker "SESSION WITH OVERLONG KEYRING NAME"
new_session --fail a$maxdesc
expect_error EINVAL

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

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