[WINETESTS]

- Remove unnecessary use of allow_warnings
- Do not hide warnings that indicate actual problems in setuapi (non-Wine test, should move to apitests) and winmm (Wine bugs, fixed upstream)

svn path=/trunk/; revision=62569
This commit is contained in:
Thomas Faber 2014-03-26 12:15:55 +00:00
parent 9375945c22
commit 2cc0229ae2
3 changed files with 2 additions and 3 deletions

View file

@ -17,5 +17,5 @@ add_importlibs(setupapi_winetest advapi32 setupapi user32 msvcrt kernel32)
add_cd_file(TARGET setupapi_winetest DESTINATION reactos/bin FOR all)
if(NOT MSVC)
add_target_compile_flags(setupapi_winetest "-Wno-format")
add_target_compile_flags(setupapi_winetest "-Wno-error=format")
endif()

View file

@ -17,5 +17,5 @@ add_importlibs(winmm_winetest winmm user32 msvcrt kernel32 ntdll)
add_cd_file(TARGET winmm_winetest DESTINATION reactos/bin FOR all)
if(NOT MSVC)
add_target_compile_flags(winmm_winetest "-Wno-format -Wno-unused-but-set-variable")
add_target_compile_flags(winmm_winetest "-Wno-error=format -Wno-error=unused-but-set-variable")
endif()

View file

@ -6,5 +6,4 @@ add_cd_file(TARGET ws2_32_winetest DESTINATION reactos/bin FOR all)
if(NOT MSVC)
add_target_compile_flags(ws2_32_winetest "-Wno-format")
allow_warnings(ws2_32_winetest)
endif()