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)
Mon, Jun 2, 6:58 AM
Unknown Object (File)
Sat, May 31, 4:09 PM
Unknown Object (File)
Tue, May 27, 11:23 PM
Unknown Object (File)
Mon, May 5, 6:47 AM
Unknown Object (File)
Apr 21 2025, 8:22 AM
Unknown Object (File)
Apr 20 2025, 1:16 AM
Unknown Object (File)
Apr 19 2025, 11:59 PM
Unknown Object (File)
Apr 14 2025, 7:45 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

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

asomers requested changes to this revision.Jul 22 2018, 5:16 PM
asomers added inline comments.
tests/sys/auditpipe/auditpipe_test.c
90 ↗(On Diff #45692)

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

99 ↗(On Diff #45692)

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.