Remove obsolete QSKIP call.
authorJason McDonald <jason.mcdonald@nokia.com>
Wed, 26 Oct 2011 00:28:13 +0000 (10:28 +1000)
committerQt by Nokia <qt-info@nokia.com>
Wed, 26 Oct 2011 23:38:39 +0000 (01:38 +0200)
The bug referenced in the QSKIP has been marked as resolved, so this
QSKIP should no longer be needed.

Change-Id: I41dd964827a3df8fb5ebb9674cef9db59c03d432
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
tests/auto/corelib/concurrent/qtconcurrentfilter/tst_qtconcurrentfilter.cpp

index eae7a5c..91d61e2 100644 (file)
@@ -1511,9 +1511,6 @@ void tst_QtConcurrentFilter::noDetatch()
 #ifndef QT_NO_STL
 void tst_QtConcurrentFilter::stlContainers()
 {
-#if defined(_MSC_VER) && _MSC_VER >= 1600
-    QSKIP("Test does not compile with MSVC 2010 (see QTBUG-18996)");
-#else
     std::vector<int> vector;
     vector.push_back(1);
     vector.push_back(2);
@@ -1537,7 +1534,6 @@ void tst_QtConcurrentFilter::stlContainers()
     QtConcurrent::blockingFilter(list, waitFilterfn);
     QCOMPARE(list2.size(), (std::list<int>::size_type)(1));
     QCOMPARE(*list2.begin(), 1);
-#endif
 }
 #endif