diff options
author | Kent Hansen <kent.hansen@nokia.com> | 2010-02-09 10:40:39 (GMT) |
---|---|---|
committer | Kent Hansen <kent.hansen@nokia.com> | 2010-02-09 13:44:19 (GMT) |
commit | 9d8af1a5a11571d3f514e4ad73a0712ea5d89b0e (patch) | |
tree | a06f93d13b751c79bc27284cd191a00f2add1577 | |
parent | 7177a8d02bdec25b1c64dd65c7c7f5803809a244 (diff) | |
download | Qt-9d8af1a5a11571d3f514e4ad73a0712ea5d89b0e.zip Qt-9d8af1a5a11571d3f514e4ad73a0712ea5d89b0e.tar.gz Qt-9d8af1a5a11571d3f514e4ad73a0712ea5d89b0e.tar.bz2 |
Skip test that crashes on win32-g++
-rw-r--r-- | tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp b/tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp index 147896e..9514cd6 100644 --- a/tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp +++ b/tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp @@ -245,6 +245,10 @@ tst_Suite::tst_Suite() addTestExclusion("string-case", "V8-specific behavior? (Doesn't pass on SpiderMonkey either)"); +#ifdef Q_CC_MINGW + addTestExclusion("date$", "QTBUG-7698: Date.prototype.setMonth() crashes on win32-g++"); +#endif + #ifdef Q_OS_WINCE addTestExclusion("deep-recursion", "Demands too much memory on WinCE"); addTestExclusion("nested-repetition-count-overflow", "Demands too much memory on WinCE"); |