aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/suite_debugger/tst_debug_empty_main/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/suite_debugger/tst_debug_empty_main/test.py')
-rw-r--r--tests/system/suite_debugger/tst_debug_empty_main/test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/system/suite_debugger/tst_debug_empty_main/test.py b/tests/system/suite_debugger/tst_debug_empty_main/test.py
index f71cd45d44..5a639d5dac 100644
--- a/tests/system/suite_debugger/tst_debug_empty_main/test.py
+++ b/tests/system/suite_debugger/tst_debug_empty_main/test.py
@@ -52,7 +52,7 @@ def main():
workingDir = tempDir()
projectName = createEmptyQtProject(workingDir, "EmptyQtProj", targets)
waitForProjectParsing()
- addFileToProject(os.path.join(workingDir, projectName), " C++", "C++ Source File", "main.cpp")
+ addFileToProject(os.path.join(workingDir, projectName), " C/C++", "C/C++ Source File", "main.cpp")
editor = waitForObject(":Qt Creator_CppEditor::Internal::CPPEditorWidget")
typeLines(editor, ["int main() {"])
invokeMenuItem("File", "Save All")
@@ -84,7 +84,7 @@ def __handleAppOutputWaitForDebuggerFinish__():
ensureChecked(":Qt Creator_AppOutput_Core::Internal::OutputPaneToggleButton")
appOutput = waitForObject("{type='Core::OutputWindow' visible='1' "
"windowTitle='Application Output Window'}")
- if not test.verify(waitFor("str(appOutput.plainText).endswith('Debugging has finished')", 20000),
+ if not test.verify(waitFor("str(appOutput.plainText).rstrip().endswith('Debugging has finished')", 20000),
"Verifying whether debugging has finished."):
test.log("Aborting debugging to let test continue.")
invokeMenuItem("Debug", "Abort Debugging")