Searched refs:expect_exact (Results 1 – 25 of 26) sorted by relevance
12
31 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 …]
37 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 …]
55 …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 …]
60 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 …]
58 child.expect_exact(prompt)62 child.expect_exact(prompt)64 child.expect_exact(prompt)70 child.expect_exact(prompt)72 child.expect_exact(prompt)
27 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")
36 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))
56 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?')
25 self.child.expect_exact("No breakpoints currently set.")32 self.child.expect_exact("Sources") # wait for gui42 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")
24 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)
53 child.expect_exact(prompt)55 child.expect_exact(prompt)57 child.expect_exact(prompt)65 child.expect_exact(prompt)
26 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)")
19 self.child.expect_exact("stdout: foo")22 self.child.expect_exact("stdout: bar")25 self.child.expect_exact("stdout: baz")
32 self.child.expect_exact("Threads")35 self.child.expect_exact("#0: break_here")46 self.child.expect_exact("Threads")
15 self.child.expect_exact(substr)18 self.child.expect_exact(str(self.current_repl_line_number) + ">")39 self.child.expect_exact("1>")
54 child.expect_exact(prompt)58 child.expect_exact(prompt)63 child.expect_exact(prompt)
69 child.expect_exact(prompt)74 child.expect_exact(prompt)79 child.expect_exact(prompt)
24 self.child.expect_exact("read: Hello cat")36 self.child.expect_exact("read: Goodbye cat")
15 self.child.expect_exact("terminate with an empty line to evaluate")57 self.child.expect_exact("only_local ")
86 child.expect_exact(prompt)88 child.expect_exact(prompt)103 return self.child.expect_exact(pattern, *args, **kwargs)
33 self.child.expect_exact("func(); // Break here")35 self.child.expect_exact("return 1; // In function")
34 self.child.expect_exact("(lldb) This is a long sentence missing its first letter.")
72 child.expect_exact(lldb_prompt)
65 return self.child.expect_exact([self.prompt, self.continuation_prompt],
371 def expect_exact(self, pattern_list, timeout=-1, searchwindowsize=-1, member in SpawnBase