Test cases executed in their own process can now bail out if

assertion fails.

Note: Bailing out doesn't work with --in-proc option.
This commit is contained in:
Markus Kauppila 2011-08-28 21:00:38 +03:00
parent 103124ac9f
commit 87e1417923
4 changed files with 23 additions and 5 deletions

View file

@ -142,6 +142,8 @@ test_dummy2(void *arg)
char *msg = "eello";
//msg[0] = 'H';
AssertTrue(1, "Assert message");
AssertTrue(0, "Assert message");
AssertTrue(1, "Assert message");
}
void