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:
Peter Hutterer 2019-04-30 13:12:23 +10:00
parent 01efe9de4f
commit 2185a9d6bd
2 changed files with 2 additions and 2 deletions

View file

@ -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);

View file

@ -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);