diff options
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"); } |