From: Stephen Kelly Date: Fri, 20 Jul 2012 12:56:40 +0000 (+0200) Subject: Exclude the delayed resource file test on Windows. X-Git-Tag: v5.0.0-beta1~673 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=01d69e37f4866009b8458fc9d3ce39d1b9b442a9;p=profile%2Fivi%2Fqtbase.git Exclude the delayed resource file test on Windows. The feature does not work there. Change-Id: I4c19577d3882b5ea01d20f4a67a512c1e6bc803e Reviewed-by: Rohan McGovern --- diff --git a/tests/auto/cmake/CMakeLists.txt b/tests/auto/cmake/CMakeLists.txt index 54f0322..55db94d 100644 --- a/tests/auto/cmake/CMakeLists.txt +++ b/tests/auto/cmake/CMakeLists.txt @@ -67,6 +67,10 @@ if (Qt5DBus_FOUND AND NOT APPLE) expect_pass(test_dbus_module) endif() expect_pass(test_multiple_find_package) -expect_pass(test_add_resources_delayed_file) +if (NOT WIN32) + # Currently broken on windows. Reported upstream: + # http://public.kitware.com/Bug/view.php?id=13392 + expect_pass(test_add_resources_delayed_file) +endif() expect_pass(test_private_includes) expect_pass(test_modules)