mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
simplify tests
This commit is contained in:
parent
fcfc736881
commit
39d2613c21
1 changed files with 2 additions and 9 deletions
|
@ -105,7 +105,7 @@ static void TEST_setjmp_3(void)
|
|||
|
||||
static void TEST_setjmp_4(void)
|
||||
{
|
||||
volatile int x = 101, y = 102, z = 103;
|
||||
volatile int x = 0xFEEDF00D;
|
||||
volatile int value;
|
||||
|
||||
memset(&g_jmp_buf, 0xCC, sizeof(g_jmp_buf));
|
||||
|
@ -115,24 +115,17 @@ static void TEST_setjmp_4(void)
|
|||
{
|
||||
ok_int(TRUE, TRUE);
|
||||
|
||||
z = 999;
|
||||
TEST_longjmp(0);
|
||||
|
||||
ok_int(TRUE, FALSE);
|
||||
ok_int(TRUE, FALSE);
|
||||
ok_int(TRUE, FALSE);
|
||||
}
|
||||
else if (value == 1)
|
||||
{
|
||||
ok_int(x, 101);
|
||||
ok_int(y, 102);
|
||||
ok_int(z, 999);
|
||||
ok_int(x, 0xFEEDF00D);
|
||||
}
|
||||
else
|
||||
{
|
||||
ok_int(TRUE, FALSE);
|
||||
ok_int(TRUE, FALSE);
|
||||
ok_int(TRUE, FALSE);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue