Page MenuHomeFreeBSD

Introduce test-program for auditpipe(4)
ClosedPublic

Authored by aniketp on Jul 22 2018, 4:31 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Nov 18, 2:06 AM
Unknown Object (File)
Thu, Nov 6, 6:12 AM
Unknown Object (File)
Sun, Oct 26, 5:47 PM
Unknown Object (File)
Sun, Oct 26, 3:56 PM
Unknown Object (File)
Sun, Oct 26, 3:22 AM
Unknown Object (File)
Fri, Oct 24, 10:22 AM
Unknown Object (File)
Oct 19 2025, 6:57 AM
Unknown Object (File)
Oct 19 2025, 6:56 AM
Subscribers

Details

Summary

This revision introduces test-program for auditpipe(4). The tests currently only test initial
ioctls provided by auditpipe(4) and lay a foundation on how the tests will be organised later on.

The ioctls currently tested are:

  • AUDITPIPE_GET_QLEN
  • AUDITPIPE_GET_QLIMIT
  • AUDITPIPE_SET_QLIMIT
  • AUDITPIPE_GET_QLIMIT_MAX
  • AUDITPIPE_GET_QLIMIT_MIN
  • AUDITPIPE_GET_MAXAUDITDATA
Test Plan

Execute make && make install from test/sys/auditpipe.
Execute kyua test from /usr/tests/sys/auditpipe. All testcases should succeed.

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 18253
Build 17981: arc lint + arc unit

Event Timeline

asomers requested changes to this revision.Jul 22 2018, 5:16 PM
asomers added inline comments.
tests/sys/auditpipe/auditpipe_test.c
91

Why do you think it's probably 128? How about setting it to curr_qlimit - 1 instead of hardcoding 128?

100

This should go in a cleanup step, not in the test body.

This revision now requires changes to proceed.Jul 22 2018, 5:16 PM
  • Move cleanup part of auditpipe_set_qlimit to test case cleanup section
This revision is now accepted and ready to land.Jul 22 2018, 7:34 PM
This revision was automatically updated to reflect the committed changes.