selftests: acct: Add ksft_exit_skip if not running as rootIf the selftest is not running as root, it should skip notfail and give an appropriate warning to the user. This patch addsksft_exit_skip
selftests: acct: Add ksft_exit_skip if not running as rootIf the selftest is not running as root, it should skip notfail and give an appropriate warning to the user. This patch addsksft_exit_skip() if the test is not running as root.Logs:Before change:TAP version 131..1ok 1 # SKIP This test needs root to run!After change:TAP version 131..1ok 2 # SKIP This test needs root to run!Totals: pass:0 fail:0 xfail:0 xpass:0 skip:1 error:0Link: https://lore.kernel.org/r/[email protected]Signed-off-by: Shivam Chaudhary <[email protected]>Signed-off-by: Shuah Khan <[email protected]>
show more ...
selftest: acct: Add selftest for the acct() syscallThe acct() system call enables or disables process accounting.If accounting is turned on, records for each terminating processare appended to a
selftest: acct: Add selftest for the acct() syscallThe acct() system call enables or disables process accounting.If accounting is turned on, records for each terminating processare appended to a specified filename as it terminates. An argument of NULLcauses accounting to be turned off.This patch will add a test for the acct() syscall.Signed-off-by: Abdulrasaq Lawani <[email protected]>Signed-off-by: Shuah Khan <[email protected]>