* grub-core/tests/lib/test.c (grub_test_run): Return non-zero on
test failures, so that a failing unit test correctly causes 'make check' to fail.
This commit is contained in:
parent
45d26abb40
commit
c3fc8394a0
2 changed files with 15 additions and 5 deletions
|
@ -225,10 +225,14 @@ grub_test_run (grub_test_t test)
|
|||
failure->line, (failure->message ? : "<no message>"));
|
||||
|
||||
if (!failure_list)
|
||||
grub_printf ("%s: PASS\n", test->name);
|
||||
{
|
||||
grub_printf ("%s: PASS\n", test->name);
|
||||
return GRUB_ERR_NONE;
|
||||
}
|
||||
else
|
||||
grub_printf ("%s: FAIL\n", test->name);
|
||||
|
||||
free_failures ();
|
||||
return GRUB_ERR_NONE;
|
||||
{
|
||||
grub_printf ("%s: FAIL\n", test->name);
|
||||
free_failures ();
|
||||
return GRUB_ERR_TEST_FAILURE;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue