From ff4f31157deac23173150f5ab48243b810f336bf Mon Sep 17 00:00:00 2001 From: AntonBikineev Date: Sun, 28 Feb 2016 03:04:12 +0300 Subject: [PATCH] Disabling movable_then test on Windows --- Release/tests/functional/pplx/pplx_test/pplxtask_tests.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Release/tests/functional/pplx/pplx_test/pplxtask_tests.cpp b/Release/tests/functional/pplx/pplx_test/pplxtask_tests.cpp index c6f39e815d..e38398f854 100644 --- a/Release/tests/functional/pplx/pplx_test/pplxtask_tests.cpp +++ b/Release/tests/functional/pplx/pplx_test/pplxtask_tests.cpp @@ -306,6 +306,7 @@ TEST(TestTasks_void_tasks_default_construction) TEST(TestTasks_movable_then) { +#ifndef _MSC_VER // create movable only type struct A { @@ -327,6 +328,7 @@ TEST(TestTasks_movable_then) auto f = task.then(std::move(a)); IsTrue(f.get() == 'c', L".then should be able to work with movable functors"); +#endif // _MSC_VER } TEST(TestTasks_constant_this)