From 11d1068aa72df599ce2d44e607456b089ec2b84d Mon Sep 17 00:00:00 2001
From: Thiago Macieira <thiago.macieira@intel.com>
Date: Fri, 27 Sep 2013 14:46:43 -0700
Subject: [PATCH] Revert "Skip failing qscriptengine tests on Windows."

This reverts commit eff4a0f3fca2e22d4be888cdd7953e1c2ab8c918. That
commit disabled a test that had a legitimate failure, caused by a
QDateTime regression. Said regression was fixed by qtbase commit
475cbed2446d0e3595e7b8ab71dcbc1ae5f59bcf.

Change-Id: I1212dc8414d5a0d8d87bbe2e2a667475fd30414c
Reviewed-by: John Layt <jlayt@kde.org>
---
 tests/auto/qscriptengine/tst_qscriptengine.cpp | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/tests/auto/qscriptengine/tst_qscriptengine.cpp b/tests/auto/qscriptengine/tst_qscriptengine.cpp
index 82d7f052..c75f6522 100644
--- a/tests/auto/qscriptengine/tst_qscriptengine.cpp
+++ b/tests/auto/qscriptengine/tst_qscriptengine.cpp
@@ -5809,9 +5809,6 @@ void tst_QScriptEngine::qRegExpInport()
 // effect at a given date (QTBUG-9770).
 void tst_QScriptEngine::dateRoundtripJSQtJS()
 {
-#ifdef Q_OS_WIN
-    QSKIP("This test fails on Windows due to a bug in QDateTime.");
-#endif
     uint secs = QDateTime(QDate(2009, 1, 1)).toUTC().toTime_t();
     QScriptEngine eng;
     for (int i = 0; i < 8000; ++i) {
@@ -5839,9 +5836,6 @@ void tst_QScriptEngine::dateRoundtripQtJSQt()
 
 void tst_QScriptEngine::dateConversionJSQt()
 {
-#ifdef Q_OS_WIN
-    QSKIP("This test fails on Windows due to a bug in QDateTime.");
-#endif
     uint secs = QDateTime(QDate(2009, 1, 1)).toUTC().toTime_t();
     QScriptEngine eng;
     for (int i = 0; i < 8000; ++i) {
-- 
GitLab