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:
parent
103124ac9f
commit
87e1417923
4 changed files with 23 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue