diff options
Diffstat (limited to 'c_implementation/tests')
| -rw-r--r-- | c_implementation/tests/test_akfs.c | 9 | 
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"); +    }  }  | 
