1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
Description: disable tests that fail on some Debian architectures
Author: Dmitry Shachnev <mitya57@debian.org>
Forwarded: not-needed
Last-Update: 2015-02-25
--- a/tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp
+++ b/tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp
@@ -2270,6 +2270,7 @@
void tst_QScriptExtQObject::cppConnectAndDisconnect2()
{
+ QSKIP("Fails on some architectures");
QScriptEngine eng;
QLineEdit edit;
QLineEdit edit2;
--- a/tests/auto/qscriptjstestsuite/skip.txt
+++ b/tests/auto/qscriptjstestsuite/skip.txt
@@ -5,6 +5,8 @@
regress-322135-02.js | asserts
regress-322135-03.js | takes forever
regress-322135-04.js | takes forever
+ecma/Expressions/11.4.7-02.js | Fails on some architectures
+ecma/TypeConversion/9.3.1-3.js | Fails on some architectures
ecma_3/Array/regress-387501.js | Produces wrong error message
ecma_3/RegExp/regress-375715-04.js | bug
ecma_3/RegExp/regress-289669.js | Can fail due to relying on wall-clock time
--- a/tests/auto/qscriptv8testsuite/skip.txt
+++ b/tests/auto/qscriptv8testsuite/skip.txt
@@ -3,8 +3,10 @@
mirror-* | not applicable
array-concat | Hangs on JSC backend
array-splice | Hangs on JSC backend
+smi-negative-zero | Unresolved failures
sparse-array-reverse | Hangs on JSC backend
string-case | V8-specific behavior? (Doesn't pass on SpiderMonkey either)
+to-precision | Unresolved failures
[Q_OS_WINCE]
deep-recursion | Demands too much memory on WinCE
@@ -19,18 +21,4 @@
[Q_CC_INTEL]
math-min-max | Unresolved failures with intel compiler
negate-zero | Unresolved failures with intel compiler
-smi-negative-zero | Unresolved failures with intel compiler
str-to-num | Unresolved failures with intel compiler
-to-precision | Unresolved failures with intel compiler
-
-[Q_OS_MAC]
-smi-negative-zero | Unresolved failures on Mac OS X (Cocoa)
-to-precision | Unresolved failures on Mac OS X (Cocoa)
-
-[Q_OS_WIN]
-to-precision | Unresolved failures on Windows
-smi-negative-zero | Unresolved failure on Windows 8 (QTBUG-41321)
-
-[Q_OS_LINUX]
-smi-negative-zero | Unresolved sign failure for Ubuntu 11.10 x64 (QTBUG-23463)
-to-precision | Unresolved failure on Ubuntu 11.10 x64 (QTBUG-23463)
|