reactos/rostests/apitests/ntdll/ntdll_apitest.rbuild
Thomas Faber 246357c187 [NTDLL_APITEST]
- Add NtAllocateVirtualMemory test, which is a small stress test for virtual memory allocation/freeing/reuse
- Can be used to reproduce bug 5857 in third stage (install with VT-x enabled, then disable for the test)
- Shows that the bug is a race condition in Mm, and not heap's fault
- I've put ASSERTs instead of ok's for easier debugging

svn path=/trunk/; revision=54548
2011-11-30 17:00:23 +00:00

25 lines
683 B
Ruby

<?xml version="1.0"?>
<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
<group>
<module name="ntdll_apitest" type="win32cui" installbase="bin" installname="ntdll_apitest.exe"
allowwarnings="true">
<include base="ntdll_apitest">.</include>
<library>wine</library>
<library>advapi32</library>
<library>ntdll</library>
<library>pseh</library>
<file>testlist.c</file>
<file>NtAllocateVirtualMemory.c</file>
<file>NtFreeVirtualMemory.c</file>
<file>RtlInitializeBitMap.c</file>
<file>ZwContinue.c</file>
<file>SystemInfo.c</file>
<if property="ARCH" value="i386">
<directory name="i386">
<file>ZwContinue.S</file>
</directory>
</if>
</module>
</group>