diff options
author | Abdulrasaq Lawani <abdulrasaqolawani@gmail.com> | 2024-08-01 12:29:52 +0300 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2024-08-01 22:55:34 +0300 |
commit | f0a1ffa6f9771c6a1283afab591781e7c797e2e1 (patch) | |
tree | fb3b88cd2a29a4df7fe5543cca5594ecc074f248 /tools/testing/selftests/Makefile | |
parent | 44b045e27c65153cc8f549627d8d6d82f897c03c (diff) | |
download | linux-f0a1ffa6f9771c6a1283afab591781e7c797e2e1.tar.xz |
selftest: acct: Add selftest for the acct() syscall
The acct() system call enables or disables process accounting.
If accounting is turned on, records for each terminating process
are appended to a specified filename as it terminates. An argument of NULL
causes accounting to be turned off.
This patch will add a test for the acct() syscall.
Signed-off-by: Abdulrasaq Lawani <abdulrasaqolawani@gmail.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools/testing/selftests/Makefile')
-rw-r--r-- | tools/testing/selftests/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile index af2429431b6b..f51fcceb45fd 100644 --- a/tools/testing/selftests/Makefile +++ b/tools/testing/selftests/Makefile @@ -1,4 +1,5 @@ # SPDX-License-Identifier: GPL-2.0 +TARGETS += acct TARGETS += alsa TARGETS += amd-pstate TARGETS += arm64 |