Changes in uspace/app/bdsh/test/toktest.c [134ac5d:d5c1051] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/test/toktest.c
r134ac5d rd5c1051 47 47 48 48 int rc = tok_init(&tokenizer, input_buffer, tokens, MAX_TOKENS); 49 PCUT_ASSERT_ INT_EQUALS(EOK, rc);49 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 50 50 51 51 size_t token_count; 52 52 rc = tok_tokenize(&tokenizer, &token_count); 53 PCUT_ASSERT_ INT_EQUALS(EOK, rc);53 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 54 54 55 55
Note:
See TracChangeset
for help on using the changeset viewer.