Lines Matching refs:expect

19         self.expect("frame select -r 1", substrs=["nested2() at"])
20 self.expect("frame select -r -1", substrs=["nested3() at"])
22 … self.expect("frame select -r -1", error=True, substrs=["Already at the bottom of the stack."])
23 …self.expect("frame select -r -2147483647", error=True, substrs=["Already at the bottom of the stac…
24 …self.expect("frame select -r -2147483648", error=True, substrs=["error: invalid frame offset argum…
25 …self.expect("frame select -r -2147483649", error=True, substrs=["error: invalid frame offset argum…
27 self.expect("frame select -r 1", substrs=["nested2() at"])
28 self.expect("frame select -r -2", substrs=["nested3() at"])
29 self.expect("frame select -r 1", substrs=["nested2() at"])
30 self.expect("frame select -r -2147483647", substrs=["nested3() at"])
31 self.expect("frame select -r 1", substrs=["nested2() at"])
32 …self.expect("frame select -r -2147483648", error=True, substrs=["error: invalid frame offset argum…
33 …self.expect("frame select -r -2147483649", error=True, substrs=["error: invalid frame offset argum…
35 self.expect("frame select -r 100")
36 self.expect("frame select -r 1", error=True, substrs=["Already at the top of the stack."])
52 self.expect("frame select 0", substrs=["frame #0"])
55 self.expect("up", substrs=["frame #1"])
56 self.expect("frame select -r 1", substrs=["frame #2"])
57 self.expect("frame select -r -1", substrs=["frame #1"])
60 self.expect("frame select 2", substrs=["frame #2"])
61 self.expect("frame select 1", substrs=["frame #1"])
62 self.expect("frame select 3", substrs=["frame #3"])
63 self.expect("frame select 0", substrs=["frame #0"])
64 self.expect("frame select 1", substrs=["frame #1"])
67 self.expect("down", substrs=["frame #0"])
68 self.expect("frame select -r 1", substrs=["frame #1"])
69 self.expect("frame select -r -1", substrs=["frame #0"])
72 self.expect("frame select 2", substrs=["frame #2"])
73 self.expect("frame select 1", substrs=["frame #1"])
74 self.expect("frame select 3", substrs=["frame #3"])
75 self.expect("frame select 0", substrs=["frame #0"])