aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@qt.io>2017-12-21 13:20:24 +0100
committerOswald Buddenhagen <oswald.buddenhagen@qt.io>2017-12-21 13:20:24 +0100
commit777ca8e655cf3561b1386baf0537fa252e016d23 (patch)
tree43e155d8e06df56d60aa85d0a21ee82897a4b59d /tests
parent6e0b65a11ccc50b0631e7e770a5acbd9163cf362 (diff)
parentc14684ffc997809c63310699e1c9edd53a8e7448 (diff)
Merge remote-tracking branch 'origin/4.5'
Conflicts: src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.cpp src/plugins/qmlprofiler/qmlprofilertraceclient.cpp Change-Id: I94647f59d7a9df48168ac066555afe80f5f9b91f
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/debugger/tst_dumpers.cpp3
-rw-r--r--tests/auto/qml/codemodel/importscheck/tst_importscheck.cpp3
-rw-r--r--tests/system/suite_CSUP/tst_CSUP03/test.py4
-rw-r--r--tests/system/suite_debugger/tst_simple_debug/test.py2
4 files changed, 8 insertions, 4 deletions
diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp
index ef311bce69..b627849496 100644
--- a/tests/auto/debugger/tst_dumpers.cpp
+++ b/tests/auto/debugger/tst_dumpers.cpp
@@ -1517,7 +1517,8 @@ void tst_Dumpers::dumper()
<< "-c"
<< "bm doit!qtcDebugBreakFunction;g"
<< "debug\\doit.exe";
- cmds += "!qtcreatorcdbext.script sys.path.insert(1, '" + dumperDir + "')\n"
+ cmds += ".symopt+0x8000\n"
+ "!qtcreatorcdbext.script sys.path.insert(1, '" + dumperDir + "')\n"
"!qtcreatorcdbext.script from cdbbridge import *\n"
"!qtcreatorcdbext.script theDumper = Dumper()\n"
"!qtcreatorcdbext.script theDumper.setupDumpers()\n"
diff --git a/tests/auto/qml/codemodel/importscheck/tst_importscheck.cpp b/tests/auto/qml/codemodel/importscheck/tst_importscheck.cpp
index f362c2cdf9..f6dbf5eb0a 100644
--- a/tests/auto/qml/codemodel/importscheck/tst_importscheck.cpp
+++ b/tests/auto/qml/codemodel/importscheck/tst_importscheck.cpp
@@ -120,8 +120,7 @@ void tst_ImportCheck::test_data()
QTest::addColumn<QStringList>("expectedFiles");
QTest::newRow("base") << QStringList(QString(TESTSRCDIR "/base"))
<< QStringList({"QML 1.0", "QtQml 2.2", "QtQml 2.1", "QtQuick 2.0",
- "QtQml 2.0", "QtQuick 2.-1", "QtQuick 2.1",
- "QtQuick 2.2", "<cpp>"})
+ "QtQml 2.0", "QtQuick 2.1", "QtQuick 2.2", "<cpp>"})
<< QStringList();
QTest::newRow("001_flatQmlOnly") << QStringList(QString(TESTSRCDIR "/001_flatQmlOnly"))
<< QStringList()
diff --git a/tests/system/suite_CSUP/tst_CSUP03/test.py b/tests/system/suite_CSUP/tst_CSUP03/test.py
index bd4478000e..21bc53f5c2 100644
--- a/tests/system/suite_CSUP/tst_CSUP03/test.py
+++ b/tests/system/suite_CSUP/tst_CSUP03/test.py
@@ -77,6 +77,10 @@ def main():
}
for useClang in [False, True]:
with TestSection(getCodeModelString(useClang)):
+ if (useClang and platform.system() in ('Windows', 'Microsoft')
+ and JIRA.isBugStillOpen(18607)):
+ test.warning("Skipping unstable tests on Windows", "See QTCREATORBUG-18607")
+ continue
if not startCreator(useClang):
continue
projectName = createNewNonQtProject()
diff --git a/tests/system/suite_debugger/tst_simple_debug/test.py b/tests/system/suite_debugger/tst_simple_debug/test.py
index aff1aa8851..c726d6468b 100644
--- a/tests/system/suite_debugger/tst_simple_debug/test.py
+++ b/tests/system/suite_debugger/tst_simple_debug/test.py
@@ -52,7 +52,7 @@ def main():
test.log("Setting breakpoints")
result = setBreakpointsForCurrentProject(filesAndLines)
if result:
- expectedBreakpointsOrder = [{os.path.join(workingDir, projectName, "main.cpp"):12},
+ expectedBreakpointsOrder = [{os.path.join(workingDir, projectName, "main.cpp"):10},
{os.path.join(workingDir, projectName, "main.qml"):13}]
availableConfigs = iterateBuildConfigs(len(checkedTargets), "Debug")
progressBarWait()