aboutsummaryrefslogtreecommitdiff
path: root/c_implementation/tests
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2025-04-29 21:07:51 +0300
committerkaotisk <kaotisk@arching-kaos.org>2025-04-29 21:07:51 +0300
commite94805b88b37677aeb719f2e95c722476f41a1d5 (patch)
treee18681d7d59a5d59993fa3582848d6c852630c64 /c_implementation/tests
parent464cc136939c9b032de032ca4ab62389f3996ee4 (diff)
downloadarching-kaos-tools-e94805b88b37677aeb719f2e95c722476f41a1d5.tar.gz
arching-kaos-tools-e94805b88b37677aeb719f2e95c722476f41a1d5.tar.bz2
arching-kaos-tools-e94805b88b37677aeb719f2e95c722476f41a1d5.zip
Testing
Diffstat (limited to 'c_implementation/tests')
-rw-r--r--c_implementation/tests/test_akfs.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/c_implementation/tests/test_akfs.c b/c_implementation/tests/test_akfs.c
index 247a59a..b8bfdb0 100644
--- a/c_implementation/tests/test_akfs.c
+++ b/c_implementation/tests/test_akfs.c
@@ -253,7 +253,14 @@ static void test_ak_fs_cfm()
ak_log_debug(__func__, "FAILED");
return;
}
- ak_fs_cfm(&map);
+ if ( ak_fs_cfm(&map) == 0 )
+ {
+ ak_log_info(__func__, "PASSED");
+ }
+ else
+ {
+ ak_log_error(__func__, "FAILED");
+ }
}