~ubuntu-branches/ubuntu/wily/keyutils/wily

« back to all changes in this revision

Viewing changes to tests/keyctl/session/bad-args/runtest.sh

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-10-16 11:45:19 UTC
  • mfrom: (1.1.7) (10.2.16 sid)
  • Revision ID: package-import@ubuntu.com-20141016114519-cqt8zwrg92c31m31
Tags: 1.5.9-5ubuntu1
Disable the tests, hanging on the distro buildd kernels (12.04 LTS).
Verified that the tests succeed with the 14.04 LTS kernels.
Addresses: LP: #1381973.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
new_session --fail ""
15
15
expect_error EINVAL
16
16
 
17
 
# check that an overlong keyring name fails correctly
18
 
marker "SESSION WITH OVERLONG KEYRING NAME"
19
 
new_session --fail a$maxdesc
20
 
expect_error EINVAL
 
17
# Temporarily disable this test on mipsel and sparc, where it does not fail
 
18
if [ "$MAXDESCLEN_NOCHECK" != "yes" ]
 
19
then
 
20
    # check that an overlong keyring name fails correctly
 
21
    marker "SESSION WITH OVERLONG KEYRING NAME"
 
22
    new_session --fail a$maxdesc
 
23
    expect_error EINVAL
 
24
fi
21
25
 
22
26
echo "++++ FINISHED TEST: $result" >>$OUTPUTFILE
23
27