2010-01-28 Robert Millan <rmh.grub@aybabtu.com>

* Makefile.in (check): Exit with fail status when one of the tests
	fails.
	* tests/example_functional_test.c (example_test): Fix reversed assert.
	* tests/example_unit_test.c (example_test): Likewise.
This commit is contained in:
Robert Millan 2010-01-28 15:27:41 +00:00
parent 2e1cb9bbbf
commit ec1444e6df
4 changed files with 13 additions and 8 deletions

View file

@ -31,7 +31,7 @@ example_test (void)
/* Check if 1st argument is true and report with custom error message. */
grub_test_assert (2 == 2, "2 equal 2 expected");
grub_test_assert (2 == 3, "2 is not equal to %d", 3);
grub_test_assert (2 != 3, "2 matches %d", 3);
}
/* Register example_test method as a unit test. */