mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-02-03 10:00:27 +01:00
test: return 77 for skip when we're not running a test
This isn't technically needed since those tests aren't in the valgrind test suite anymore. But let's have it here anyway. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
01efe9de4f
commit
2185a9d6bd
2 changed files with 2 additions and 2 deletions
|
|
@ -449,7 +449,7 @@ main (int argc, char **argv)
|
|||
* raised by a test will fail in valgrind. There's nothing to
|
||||
* memcheck here anyway, so just skip the valgrind test */
|
||||
if (RUNNING_ON_VALGRIND)
|
||||
return EXIT_SUCCESS;
|
||||
return 77;
|
||||
|
||||
s = litest_assert_macros_suite();
|
||||
sr = srunner_create(s);
|
||||
|
|
|
|||
|
|
@ -1072,7 +1072,7 @@ int main(int argc, char **argv)
|
|||
* raised by a test will fail in valgrind. There's nothing to
|
||||
* memcheck here anyway, so just skip the valgrind test */
|
||||
if (RUNNING_ON_VALGRIND)
|
||||
return EXIT_SUCCESS;
|
||||
return 77;
|
||||
|
||||
s = litest_utils_suite();
|
||||
sr = srunner_create(s);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue