Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/test/toktest.c

    rb7fd2a0 r134ac5d  
    4646        str_cpy(input_buffer, MAX_INPUT, input);
    4747
    48         errno_t rc = tok_init(&tokenizer, input_buffer, tokens, MAX_TOKENS);
    49         PCUT_ASSERT_ERRNO_VAL(EOK, rc);
     48        int rc = tok_init(&tokenizer, input_buffer, tokens, MAX_TOKENS);
     49        PCUT_ASSERT_INT_EQUALS(EOK, rc);
    5050
    5151        size_t token_count;
    5252        rc = tok_tokenize(&tokenizer, &token_count);
    53         PCUT_ASSERT_ERRNO_VAL(EOK, rc);
     53        PCUT_ASSERT_INT_EQUALS(EOK, rc);
    5454
    5555
Note: See TracChangeset for help on using the changeset viewer.