Skip to content

Commit dd495f1

Browse files
committed
[lldb][test] Correct TestIRInterpreter
In 563bea9 I misssed calling getpid. Which still works but doesn't do what we intended.
1 parent 563bea9 commit dd495f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/test/API/commands/expression/ir-interpreter/TestIRInterpreter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def test_ir_interpreter(self):
135135
for expression in set_up_expressions:
136136
self.frame().EvaluateExpression(expression, options)
137137

138-
func_call = "(int)getpid"
138+
func_call = "(int)getpid()"
139139
if lldbplatformutil.getPlatform() == "windows":
140140
func_call = "(int)GetCurrentProcessId()"
141141

0 commit comments

Comments
 (0)