Remove obsolete QSKIP call.

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>
This commit is contained in:
Jason McDonald 2011-10-26 10:28:13 +10:00 committed by Qt by Nokia
parent 014581f255
commit a97c0c3c99

View 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