mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
11f128b53d
Add simple tests regarding renaming and tunnel cache behavior for short names in user mode. Longer tests should be added to show what happens in case of cache expiry. All pass on w2k3 but not on ReactOS. CORE-3875 svn path=/trunk/; revision=67897
22 lines
609 B
CMake
22 lines
609 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)
|
|
|
|
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)
|