Skip to content

Commit ff4f311

Browse files
committed
Disabling movable_then test on Windows
1 parent 2320e0c commit ff4f311

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Release/tests/functional/pplx/pplx_test/pplxtask_tests.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,7 @@ TEST(TestTasks_void_tasks_default_construction)
306306

307307
TEST(TestTasks_movable_then)
308308
{
309+
#ifndef _MSC_VER
309310
// create movable only type
310311
struct A
311312
{
@@ -327,6 +328,7 @@ TEST(TestTasks_movable_then)
327328
auto f = task.then(std::move(a));
328329

329330
IsTrue(f.get() == 'c', L".then should be able to work with movable functors");
331+
#endif // _MSC_VER
330332
}
331333

332334
TEST(TestTasks_constant_this)

0 commit comments

Comments
 (0)