Lines Matching full:output

25         output = self.get_stdout()
26 self.assertTrue(output and len(output) > 0, "expect program output")
27 lines = output.splitlines()
77 output = self.get_stdout()
78 self.assertTrue(output and len(output) > 0, "expect program output")
79 lines = output.splitlines()
106 output = self.get_console()
107 self.assertTrue(output and len(output) > 0, "expect console output")
108 lines = output.splitlines()
130 output = self.get_console()
131 self.assertTrue(output and len(output) > 0, "expect console output")
132 lines = output.splitlines()
144 self.assertTrue(found, 'found "sourcePath" in console output')
155 output = self.get_stdout()
156 self.assertEqual(output, None, "expect no program output")
172 output = self.get_stdout()
173 self.assertTrue(output and len(output) > 0, "expect no program output")
174 lines = output.splitlines()
193 output = self.get_stdout()
194 self.assertTrue(output and len(output) > 0, "expect no program output")
195 lines = output.splitlines()
213 output = self.get_stdout()
214 self.assertTrue(output and len(output) > 0, "expect program output")
215 lines = output.splitlines()
243 output = self.get_stdout()
244 self.assertTrue(output and len(output) > 0, "expect program output")
245 lines = output.splitlines()
272 output = self.get_stdout()
273 self.assertTrue(output and len(output) > 0, "expect program output")
274 lines = output.splitlines()
327 # Get output from the console. This should contain both the
329 output = self.get_console()
330 # Verify all "initCommands" were found in console output
331 self.verify_commands("initCommands", output, initCommands)
332 # Verify all "preRunCommands" were found in console output
333 self.verify_commands("preRunCommands", output, preRunCommands)
334 # Verify all "postRunCommands" were found in console output
335 self.verify_commands("postRunCommands", output, postRunCommands)
350 # Get output from the console. This should contain both the
353 output = self.get_console(timeout=lldbdap_testcase.DAPTestCaseBase.timeoutval)
354 self.verify_commands("stopCommands", output, stopCommands)
357 # Get output from the console. This should contain both the
360 output = self.get_console(timeout=lldbdap_testcase.DAPTestCaseBase.timeoutval)
361 self.verify_commands("stopCommands", output, stopCommands)
365 # Get output from the console. This should contain both the
368 output = self.collect_console(
372 self.verify_commands("exitCommands", output, exitCommands)
373 self.verify_commands("terminateCommands", output, terminateCommands)
409 # Get output from the console. This should contain both the
411 output = self.get_console()
412 # Verify all "initCommands" were found in console output
413 self.verify_commands("initCommands", output, initCommands)
414 # Verify all "preRunCommands" were found in console output
415 self.verify_commands("preRunCommands", output, preRunCommands)
417 # Verify all "launchCommands" were found in console output
419 self.verify_commands("launchCommands", output, launchCommands)
422 output = self.get_console(timeout=lldbdap_testcase.DAPTestCaseBase.timeoutval)
423 self.verify_commands("stopCommands", output, stopCommands)
426 # Get output from the console. This should contain both the
429 output = self.get_console(timeout=lldbdap_testcase.DAPTestCaseBase.timeoutval)
430 self.verify_commands("stopCommands", output, stopCommands)
434 # Get output from the console. This should contain both the
436 output = self.get_console(timeout=lldbdap_testcase.DAPTestCaseBase.timeoutval)
437 self.verify_commands("exitCommands", output, exitCommands)
466 # Get output from the console. This should contain both the
468 output = self.get_console()
469 # Verify all "initCommands" were found in console output
470 self.verify_commands("initCommands", output, initCommands)
471 # Verify all "preRunCommands" were found in console output
472 self.verify_commands("preRunCommands", output, preRunCommands)
474 # Verify all "launchCommands" were founc in console output
476 self.verify_commands("launchCommands", output, launchCommands)
477 self.assertRegex(output, re.escape(bad_path) + r".*does not exist")
499 output = self.collect_console(
503 self.verify_commands("terminateCommands", output, terminateCommands)