diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2025-04-02 20:54:37 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2025-04-02 20:54:37 +0300 |
commit | b9f80a2b37edf9682f189b406542b3f7a93b24a3 (patch) | |
tree | 2c96484ccb77af8a59ed6fb7fe4632b5bafb9858 /c_implementation/tests/test_aklog.c | |
parent | 0ec3188626275fa2678882c9827ade8d045ffc7d (diff) | |
download | arching-kaos-tools-b9f80a2b37edf9682f189b406542b3f7a93b24a3.tar.gz arching-kaos-tools-b9f80a2b37edf9682f189b406542b3f7a93b24a3.tar.bz2 arching-kaos-tools-b9f80a2b37edf9682f189b406542b3f7a93b24a3.zip |
Moved directory and some experimental changes
Diffstat (limited to 'c_implementation/tests/test_aklog.c')
-rw-r--r-- | c_implementation/tests/test_aklog.c | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/c_implementation/tests/test_aklog.c b/c_implementation/tests/test_aklog.c new file mode 100644 index 0000000..7e3f6a3 --- /dev/null +++ b/c_implementation/tests/test_aklog.c @@ -0,0 +1,72 @@ +#include <libaklog.h> + +void test_message_output() +{ + ak_log_print_log_line("1731664790 <TEST> [INFO] test message info"); +} + +void test_follow() +{ + ak_log_follow(); +} + +void test_grep() +{ + ak_log_grep("-h"); +} + +void test_rotate() +{ + ak_log_rotate(); +} + +void test_log_message() +{ + ak_log_message(__func__, DEBUG, "test message info"); +} + +void test_exit() +{ + ak_log_exit(__func__, "test message info"); +} + +void test_warning() +{ + ak_log_warning(__func__, "test message info"); +} + +void test_debug() +{ + ak_log_debug(__func__, "test message info"); +} + +void test_error() +{ + ak_log_error(__func__, "test message info"); +} + +void test_info() +{ + ak_log_info(__func__, "test message info"); +} + +void test_one_word() +{ + ak_log_info(__func__, "test"); +} + +int main (void) +{ + test_follow(); + test_message_output(); + test_info(); + test_exit(); + test_error(); + test_debug(); + test_warning(); + test_log_message(); + test_rotate(); + test_grep(); + test_one_word(); + return 0; +} |