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 /src/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 'src/tests/test_aklog.c')
-rw-r--r-- | src/tests/test_aklog.c | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/src/tests/test_aklog.c b/src/tests/test_aklog.c deleted file mode 100644 index dad065f..0000000 --- a/src/tests/test_aklog.c +++ /dev/null @@ -1,72 +0,0 @@ -#include <aklog.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__, "TEST", "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_write() -{ - ak_log_info(__func__, "test message info"); -} - -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_write(); - return 0; -} |