diff options
author | Oskar <> | 2024-03-22 13:53:00 +0100 |
---|---|---|
committer | Oskar <> | 2024-03-22 13:53:00 +0100 |
commit | 6f162676864f6972c302ecab71e44149fa039551 (patch) | |
tree | c9c33c0f219be8edaff0075c5a29d14acbd6b026 /test/validate_check_p_m.c | |
parent | 55ac4ebe3bed9b112fa553abece277b309c76bb9 (diff) |
vcpm tested, seems OK
Diffstat (limited to 'test/validate_check_p_m.c')
-rw-r--r-- | test/validate_check_p_m.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/validate_check_p_m.c b/test/validate_check_p_m.c index 8809f9a..5a4c135 100644 --- a/test/validate_check_p_m.c +++ b/test/validate_check_p_m.c @@ -18,6 +18,13 @@ int main () { int ret = validate_check_p_m(smode_buf); + if(ret == _NA) { + printf("NA\n"); + } + if(ret == _PLUS_CONTINUE) { + printf("plus continue\n"); + } + if(ret == _INVALID) { printf("?\n"); } |