Knowing whether a test failed to run as its prerequisites were not available, or whether those prerequisites were available and produced unexpected/incorrect results, is a useful differentiation. Add support for skipped tests by testing for exit code 77, used through autotools/piglit/etc to denote a test which detected this and decided to skip.pull/1111/head
parent
ac78ae47a9
commit
1cb9d2bc0d
4 changed files with 17 additions and 1 deletions
@ -0,0 +1,4 @@ |
||||
project('test skip', 'c') |
||||
|
||||
exe_test_skip = executable('test_skip', 'test_skip.c') |
||||
test('test_skip', exe_test_skip) |
@ -0,0 +1,4 @@ |
||||
int main(int argc, char *argv[]) |
||||
{ |
||||
return 77; |
||||
} |
Loading…
Reference in new issue