mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
improve tests
This commit is contained in:
parent
2a2c8318bf
commit
6737d3e80d
1 changed files with 3 additions and 1 deletions
|
@ -47,15 +47,17 @@ static void Test_setjmp_2(void)
|
|||
volatile int z = 4;
|
||||
if (setjmp(g_jmp_buf) == 0)
|
||||
{
|
||||
ok_int(TRUE, TRUE);
|
||||
Test_longjmp();
|
||||
ok_int(TRUE, FALSE);
|
||||
ok_int(TRUE, FALSE);
|
||||
ok_int(TRUE, FALSE);
|
||||
}
|
||||
else
|
||||
{
|
||||
ok_int(x, 2);
|
||||
ok_int(y, 3);
|
||||
ok_int(z, 4);
|
||||
ok_int(TRUE, TRUE);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue