mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
2f233ce1f9
Add a test for CORE-10188 (which was fixed by Thomas in r69236). It is based on Nikita Pechenkin's patch with a few modifications by me to avoid race condition on start (and avoid flappy test) and to match more closely our coding style ROSTESTS-190 #resolve #comment Committed in r69351. Thanks! svn path=/trunk/; revision=69351
23 lines
624 B
CMake
23 lines
624 B
CMake
|
|
list(APPEND SOURCE
|
|
dosdev.c
|
|
FindFiles.c
|
|
GetCurrentDirectory.c
|
|
GetDriveType.c
|
|
GetModuleFileName.c
|
|
interlck.c
|
|
lstrcpynW.c
|
|
MultiByteToWideChar.c
|
|
PrivMoveFileIdentityW.c
|
|
SetCurrentDirectory.c
|
|
SetUnhandledExceptionFilter.c
|
|
TerminateProcess.c
|
|
TunnelCache.c
|
|
testlist.c
|
|
Mailslot.c)
|
|
|
|
add_executable(kernel32_apitest ${SOURCE})
|
|
target_link_libraries(kernel32_apitest wine ${PSEH_LIB})
|
|
set_module_type(kernel32_apitest win32cui)
|
|
add_importlibs(kernel32_apitest gdi32 user32 shlwapi msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET kernel32_apitest DESTINATION reactos/bin FOR all)
|