diff --git a/lldb/test/API/functionalities/exec/TestExec.py b/lldb/test/API/functionalities/exec/TestExec.py --- a/lldb/test/API/functionalities/exec/TestExec.py +++ b/lldb/test/API/functionalities/exec/TestExec.py @@ -19,8 +19,8 @@ @expectedFailureNetBSD @skipIfAsan # rdar://problem/43756823 @skipIfWindows - def test_hitting_exec (self): - self.do_test(False) + def test_hitting_exec(self): + self.do_test(skip_exec=False) @expectedFailureAll(archs=['i386'], oslist=no_match(["freebsd"]), @@ -29,8 +29,8 @@ @expectedFailureNetBSD @skipIfAsan # rdar://problem/43756823 @skipIfWindows - def test_skipping_exec (self): - self.do_test(True) + def test_skipping_exec(self): + self.do_test(skip_exec=True) def do_test(self, skip_exec): self.build()