mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 17:56:00 +00:00
[NTDLL_APITEST]
- Do not use Zw functions from user mode svn path=/trunk/; revision=60405
This commit is contained in:
parent
13828ad762
commit
8d5a1b7ca7
5 changed files with 40 additions and 46 deletions
|
@ -2,6 +2,7 @@
|
|||
list(APPEND SOURCE
|
||||
LdrEnumResources.c
|
||||
NtAllocateVirtualMemory.c
|
||||
NtContinue.c
|
||||
NtCreateThread.c
|
||||
NtFreeVirtualMemory.c
|
||||
NtMapViewOfSection.c
|
||||
|
@ -21,11 +22,10 @@ list(APPEND SOURCE
|
|||
RtlInitializeBitMap.c
|
||||
SystemInfo.c
|
||||
Timer.c
|
||||
ZwContinue.c
|
||||
testlist.c)
|
||||
|
||||
if(ARCH STREQUAL "i386")
|
||||
add_asm_files(ntdll_apitest_asm i386/ZwContinue.S)
|
||||
add_asm_files(ntdll_apitest_asm i386/NtContinue.S)
|
||||
endif()
|
||||
|
||||
add_executable(ntdll_apitest ${SOURCE} ${ntdll_apitest_asm})
|
||||
|
|
|
@ -1,22 +1,22 @@
|
|||
/*
|
||||
* PROJECT: ReactOS api tests
|
||||
* LICENSE: GPL - See COPYING in the top level directory
|
||||
* PURPOSE: Test for ZwContinue
|
||||
* PURPOSE: Test for NtContinue
|
||||
* PROGRAMMER:
|
||||
*/
|
||||
|
||||
#include <apitest.h>
|
||||
#include <ndk/kefuncs.h>
|
||||
|
||||
#include <setjmp.h>
|
||||
#include <time.h>
|
||||
|
||||
#ifdef _M_IX86
|
||||
#define ZWC_SEGMENT_BITS (0xFFFF)
|
||||
#define ZWC_EFLAGS_BITS (0x3C0CD5)
|
||||
#define NTC_SEGMENT_BITS (0xFFFF)
|
||||
#define NTC_EFLAGS_BITS (0x3C0CD5)
|
||||
#endif
|
||||
|
||||
void continuePoint(void);
|
||||
LONG NTAPI ZwContinue(IN CONTEXT *, IN BOOLEAN);
|
||||
|
||||
static jmp_buf jmpbuf;
|
||||
static CONTEXT continueContext;
|
||||
|
@ -66,20 +66,20 @@ void check(CONTEXT * pContext)
|
|||
"ContextFlags=0x%lx\n", pContext->ContextFlags);
|
||||
|
||||
/* Random data segments */
|
||||
ok((pContext->SegGs & ZWC_SEGMENT_BITS) ==
|
||||
(continueContext.SegGs & ZWC_SEGMENT_BITS),
|
||||
ok((pContext->SegGs & NTC_SEGMENT_BITS) ==
|
||||
(continueContext.SegGs & NTC_SEGMENT_BITS),
|
||||
"SegGs=0x%lx / 0x%lx\n", pContext->SegGs, continueContext.SegGs);
|
||||
|
||||
ok((pContext->SegFs & ZWC_SEGMENT_BITS) ==
|
||||
(continueContext.SegFs & ZWC_SEGMENT_BITS),
|
||||
ok((pContext->SegFs & NTC_SEGMENT_BITS) ==
|
||||
(continueContext.SegFs & NTC_SEGMENT_BITS),
|
||||
"SegFs=0x%lx / 0x%lx\n", pContext->SegFs, continueContext.SegFs);
|
||||
|
||||
ok((pContext->SegEs & ZWC_SEGMENT_BITS) ==
|
||||
(continueContext.SegEs & ZWC_SEGMENT_BITS),
|
||||
ok((pContext->SegEs & NTC_SEGMENT_BITS) ==
|
||||
(continueContext.SegEs & NTC_SEGMENT_BITS),
|
||||
"SegEs=0x%lx / 0x%lx\n", pContext->SegEs, continueContext.SegEs);
|
||||
|
||||
ok((pContext->SegDs & ZWC_SEGMENT_BITS) ==
|
||||
(continueContext.SegDs & ZWC_SEGMENT_BITS),
|
||||
ok((pContext->SegDs & NTC_SEGMENT_BITS) ==
|
||||
(continueContext.SegDs & NTC_SEGMENT_BITS),
|
||||
"SegDs=0x%lx / 0x%lx\n", pContext->SegDs, continueContext.SegDs);
|
||||
|
||||
/* Integer registers */
|
||||
|
@ -104,16 +104,16 @@ void check(CONTEXT * pContext)
|
|||
ok(pContext->Esp == continueContext.Esp,
|
||||
"Esp: 0x%lx != 0x%lx\n", pContext->Esp, continueContext.Esp);
|
||||
|
||||
ok((pContext->SegCs & ZWC_SEGMENT_BITS) ==
|
||||
(continueContext.SegCs & ZWC_SEGMENT_BITS),
|
||||
ok((pContext->SegCs & NTC_SEGMENT_BITS) ==
|
||||
(continueContext.SegCs & NTC_SEGMENT_BITS),
|
||||
"SegCs: 0x%lx != 0x%lx\n", pContext->SegCs, continueContext.SegCs);
|
||||
|
||||
ok((pContext->EFlags & ZWC_EFLAGS_BITS) ==
|
||||
(continueContext.EFlags & ZWC_EFLAGS_BITS),
|
||||
ok((pContext->EFlags & NTC_EFLAGS_BITS) ==
|
||||
(continueContext.EFlags & NTC_EFLAGS_BITS),
|
||||
"EFlags: 0x%lx != 0x%lx\n", pContext->EFlags, continueContext.EFlags);
|
||||
|
||||
ok((pContext->SegSs & ZWC_SEGMENT_BITS) ==
|
||||
(continueContext.SegSs & ZWC_SEGMENT_BITS),
|
||||
ok((pContext->SegSs & NTC_SEGMENT_BITS) ==
|
||||
(continueContext.SegSs & NTC_SEGMENT_BITS),
|
||||
"SegSs: 0x%lx != 0x%lx\n", pContext->SegSs, continueContext.SegSs);
|
||||
#endif
|
||||
|
||||
|
@ -121,7 +121,7 @@ void check(CONTEXT * pContext)
|
|||
longjmp(jmpbuf, 1);
|
||||
}
|
||||
|
||||
void Test_ZwContinue()
|
||||
START_TEST(NtContinue)
|
||||
{
|
||||
initrand();
|
||||
|
||||
|
@ -158,16 +158,10 @@ void Test_ZwContinue()
|
|||
/* Can't do a lot about segments */
|
||||
#endif
|
||||
|
||||
ZwContinue(&continueContext, FALSE);
|
||||
NtContinue(&continueContext, FALSE);
|
||||
ok(0, "should never get here\n");
|
||||
}
|
||||
|
||||
/* Second time */
|
||||
return;
|
||||
}
|
||||
|
||||
START_TEST(ZwContinue)
|
||||
{
|
||||
Test_ZwContinue();
|
||||
}
|
||||
|
|
@ -5,6 +5,7 @@
|
|||
|
||||
extern void func_LdrEnumResources(void);
|
||||
extern void func_NtAllocateVirtualMemory(void);
|
||||
extern void func_NtContinue(void);
|
||||
extern void func_NtCreateThread(void);
|
||||
extern void func_NtFreeVirtualMemory(void);
|
||||
extern void func_NtMapViewOfSection(void);
|
||||
|
@ -24,12 +25,12 @@ extern void func_RtlGetLengthWithoutTrailingPathSeperators(void);
|
|||
extern void func_RtlGetLongestNtPathLength(void);
|
||||
extern void func_RtlInitializeBitMap(void);
|
||||
extern void func_TimerResolution(void);
|
||||
extern void func_ZwContinue(void);
|
||||
|
||||
const struct test winetest_testlist[] =
|
||||
{
|
||||
{ "LdrEnumResources", func_LdrEnumResources },
|
||||
{ "NtAllocateVirtualMemory", func_NtAllocateVirtualMemory },
|
||||
{ "NtContinue", func_NtContinue },
|
||||
{ "NtCreateThread", func_NtCreateThread },
|
||||
{ "NtFreeVirtualMemory", func_NtFreeVirtualMemory },
|
||||
{ "NtMapViewOfSection", func_NtMapViewOfSection },
|
||||
|
@ -49,7 +50,6 @@ const struct test winetest_testlist[] =
|
|||
{ "RtlGetLongestNtPathLength", func_RtlGetLongestNtPathLength },
|
||||
{ "RtlInitializeBitMap", func_RtlInitializeBitMap },
|
||||
{ "TimerResolution", func_TimerResolution },
|
||||
{ "ZwContinue", func_ZwContinue },
|
||||
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue