Skip to content
Snippets Groups Projects
Commit 339f7a5f authored by Petr Špaček's avatar Petr Špaček Committed by Daniel Salzman
Browse files

tests: replace ok(ret == KNOT_E???) with is_int(KNOT_E???, ret) to ease debugging

Throwing away unexpected retun codes makes debugging harder.
TAP function is_int can nicely log mismatches which makes debugging easier.

To make our lives easier I replaced all ok(ret == KNOT_E???) checks with
is_int() calls. It was done using following command
+ manual review and reverts in libknot/test_control.c.

$ find -name '*.c' | xargs sed -i 's#ok(ret == \(KNOT_E[0-9A-Z_]\+\),#is_int(\1, ret,#'
parent cba5e77a
Branches
Tags
No related merge requests found
Showing
with 165 additions and 165 deletions
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment