Home
last modified time | relevance | path

Searched refs:expect_exact (Results 1 – 25 of 26) sorted by relevance

12

/llvm-project-15.0.7/lldb/test/API/commands/gui/basic/
H A DTestGuiBasic.py31 self.child.expect_exact("Target")
32 self.child.expect_exact("Process")
33 self.child.expect_exact("Thread")
34 self.child.expect_exact("View")
35 self.child.expect_exact("Help")
38 self.child.expect_exact("Sources")
39 self.child.expect_exact("main")
40 self.child.expect_exact("funky_var_name_that_should_be_rendered")
43 self.child.expect_exact("Variables")
44 self.child.expect_exact("(int) funky_var_name_that_should_be_rendered = 22")
[all …]
/llvm-project-15.0.7/lldb/test/API/driver/batch_mode/
H A DTestBatchMode.py37 child.expect_exact("run")
39 child.expect_exact("continue")
41 child.expect_exact("About to crash")
43 child.expect_exact('(char *) touch_me_not')
67 child.expect_exact("run")
69 child.expect_exact("continue")
74 child.expect_exact("exited")
99 child.expect_exact("continue")
104 child.expect_exact("exited")
152 child.expect_exact("attach")
[all …]
/llvm-project-15.0.7/lldb/test/API/iohandler/autosuggestion/
H A DTestAutosuggestion.py55 …self.child.expect_exact(cursor_horizontal_abs("(lldb) he") + "l" + self.ANSI_FAINT + "p frame" + s…
60 self.child.expect_exact(frame_output_needle)
64 self.child.expect_exact(frame_output_needle)
70 self.child.expect_exact(frame_output_needle)
74 self.child.expect_exact(frame_output_needle)
78 self.child.expect_exact(frame_output_needle)
83 self.child.expect_exact(self.ANSI_FAINT + "ame variable" + self.ANSI_RESET)
93 …self.child.expect_exact(cursor_horizontal_abs("(lldb) he") + "l" + self.ANSI_FAINT + "p apropos" +…
97 self.child.expect_exact(apropos_output_needle)
102 self.child.expect_exact(breakpoint_output_needle)
[all …]
/llvm-project-15.0.7/lldb/test/API/benchmarks/expression/
H A DTestRepeatedExprs.py60 child.expect_exact(prompt)
64 child.expect_exact(prompt)
66 child.expect_exact(prompt)
75 child.expect_exact(prompt)
77 child.expect_exact(prompt)
79 child.expect_exact(prompt)
108 child.expect_exact(prompt)
110 child.expect_exact(prompt)
112 child.expect_exact(prompt)
121 child.expect_exact(prompt)
[all …]
H A DTestExpressionCmd.py58 child.expect_exact(prompt)
62 child.expect_exact(prompt)
64 child.expect_exact(prompt)
70 child.expect_exact(prompt)
72 child.expect_exact(prompt)
/llvm-project-15.0.7/lldb/test/API/commands/expression/multiline-navigation/
H A DTestMultilineNavigation.py27 self.child.expect_exact("terminate with an empty line to evaluate")
31 self.child.expect_exact("2: ")
37 self.child.expect_exact("(int) $0 = 124")
51 self.child.expect_exact("terminate with an empty line to evaluate")
55 self.child.expect_exact("2: ")
69 self.child.expect_exact("(int) $0 = 334")
86 self.child.expect_exact("terminate with an empty line to evaluate")
91 self.child.expect_exact("terminate with an empty line to evaluate")
98 self.child.expect_exact("terminate with an empty line to evaluate")
100 self.child.expect_exact("456")
/llvm-project-15.0.7/lldb/test/API/commands/gui/viewlarge/
H A DTestGuiViewLarge.py36 self.child.expect_exact("Sources")
39 self.child.expect_exact("int a_variable_with_a_very_looooooooooooooooooooooooooo"+chr(27))
41 self.child.expect_exact("int shortvar = 1;"+chr(27))
43 self.child.expect_exact("<<< Thread 1: breakpoint 1.1"+chr(27))
46 self.child.expect_exact("Variables")
47 … self.child.expect_exact("(int) a_variable_with_a_very_looooooooooooooooooooooooooooooo"+chr(27))
48 self.child.expect_exact("(int) shortvar = 1"+chr(27))
56 self.child.expect_exact("int a_variable_with_a_very_looooooooooooooooooooooooooooo"+chr(27))
62 self.child.expect_exact("int a_variable_with_a_very_looooooooooooooooooooooooooo"+chr(27))
/llvm-project-15.0.7/lldb/test/API/benchmarks/turnaround/
H A DTestCompileRunToBreakpointTurnaround.py56 child.expect_exact(prompt)
58 child.expect_exact(prompt)
60 child.expect_exact(prompt)
99 child.expect_exact(prompt)
101 child.expect_exact(prompt)
103 child.expect_exact(prompt)
120 self.child.expect_exact('The program is running. Exit anyway?')
/llvm-project-15.0.7/lldb/test/API/commands/gui/breakpoints/
H A DTestGuiBreakpoints.py25 self.child.expect_exact("No breakpoints currently set.")
32 self.child.expect_exact("Sources") # wait for gui
42 self.child.expect_exact("Sources")
54 self.child.expect_exact("Sources")
64 self.child.expect_exact("No breakpoints currently set.")
66 self.child.expect_exact("Sources")
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbpexpect.py24 self.child.expect_exact(self.PROMPT)
64 self.child.expect_exact(cmd)
67 self.child.expect_exact("target create")
68 self.child.expect_exact("Current executable set to")
81 self.child.expect_exact(s)
/llvm-project-15.0.7/lldb/test/API/benchmarks/stepping/
H A DTestSteppingSpeed.py53 child.expect_exact(prompt)
55 child.expect_exact(prompt)
57 child.expect_exact(prompt)
65 child.expect_exact(prompt)
/llvm-project-15.0.7/lldb/test/API/iohandler/completion/
H A DTestIOHandlerCompletion.py26 self.child.expect_exact("register")
41 self.child.expect_exact("iohandler/completion/")
56 self.child.expect_exact("main.c")
62 self.child.expect_exact("More (Y/n/a)")
/llvm-project-15.0.7/lldb/test/API/iohandler/stdio/
H A DTestIOHandlerProcessSTDIO.py19 self.child.expect_exact("stdout: foo")
22 self.child.expect_exact("stdout: bar")
25 self.child.expect_exact("stdout: baz")
/llvm-project-15.0.7/lldb/test/API/commands/gui/expand-threads-tree/
H A DTestGuiExpandThreadsTree.py32 self.child.expect_exact("Threads")
35 self.child.expect_exact("#0: break_here")
46 self.child.expect_exact("Threads")
/llvm-project-15.0.7/lldb/test/API/repl/clang/
H A DTestClangREPL.py15 self.child.expect_exact(substr)
18 self.child.expect_exact(str(self.current_repl_line_number) + ">")
39 self.child.expect_exact("1>")
/llvm-project-15.0.7/lldb/test/API/benchmarks/frame_variable/
H A DTestFrameVariableResponse.py54 child.expect_exact(prompt)
58 child.expect_exact(prompt)
63 child.expect_exact(prompt)
/llvm-project-15.0.7/lldb/test/API/benchmarks/startup/
H A DTestStartupDelays.py69 child.expect_exact(prompt)
74 child.expect_exact(prompt)
79 child.expect_exact(prompt)
/llvm-project-15.0.7/lldb/test/API/iohandler/sigint/
H A DTestProcessIOHandlerInterrupt.py24 self.child.expect_exact("read: Hello cat")
36 self.child.expect_exact("read: Goodbye cat")
/llvm-project-15.0.7/lldb/test/API/commands/expression/multiline-completion/
H A DTestMultilineCompletion.py15 self.child.expect_exact("terminate with an empty line to evaluate")
57 self.child.expect_exact("only_local ")
/llvm-project-15.0.7/lldb/test/API/macosx/nslog/
H A DTestDarwinNSLogOutput.py86 child.expect_exact(prompt)
88 child.expect_exact(prompt)
103 return self.child.expect_exact(pattern, *args, **kwargs)
/llvm-project-15.0.7/lldb/test/API/commands/gui/basicdebug/
H A DTestGuiBasicDebug.py33 self.child.expect_exact("func(); // Break here")
35 self.child.expect_exact("return 1; // In function")
/llvm-project-15.0.7/lldb/test/API/iohandler/resize/
H A DTestIOHandlerResize.py34 self.child.expect_exact("(lldb) This is a long sentence missing its first letter.")
/llvm-project-15.0.7/lldb/test/API/terminal/
H A DTestSTTYBeforeAndAfter.py72 child.expect_exact(lldb_prompt)
/llvm-project-15.0.7/lldb/third_party/Python/module/pexpect-4.6/pexpect/
H A Dreplwrap.py65 return self.child.expect_exact([self.prompt, self.continuation_prompt],
H A Dspawnbase.py371 def expect_exact(self, pattern_list, timeout=-1, searchwindowsize=-1, member in SpawnBase

12