mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-01-03 12:40:14 +01:00
test: a skipped test does not count as failure
There's a blurry line between NOT_APPLICABLE and SKIP but the latter has a stronger "should run but can't right now". But where it happens the skip shouldn't count as a failure. Part-of: <https://gitlab.freedesktop.org/libinput/libinput/-/merge_requests/1276>
This commit is contained in:
parent
35838e9b2c
commit
80b45ff28e
1 changed files with 1 additions and 0 deletions
|
|
@ -1110,6 +1110,7 @@ litest_runner_run_tests(struct litest_runner *runner)
|
|||
list_for_each(t, &runner->tests_complete, node) {
|
||||
switch (t->result) {
|
||||
case LITEST_PASS:
|
||||
case LITEST_SKIP:
|
||||
case LITEST_NOT_APPLICABLE:
|
||||
break;
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue