From 3ef7dbd6650d53af79dedbfcd3c85a96b29c96bb Mon Sep 17 00:00:00 2001 From: Vedant Kumar Date: Tue, 10 Sep 2019 18:36:53 +0000 Subject: [PATCH] [lldbtest] Add an "expected_cmd_failure" option to the filecheck helper llvm-svn: 371544 --- lldb/packages/Python/lldbsuite/test/lldbtest.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py index 4b10331..313823b 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbtest.py +++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py @@ -2207,12 +2207,16 @@ class TestBase(Base): self, command, check_file, - filecheck_options = ''): + filecheck_options = '', + expect_cmd_failure = False): # Run the command. self.runCmd( command, + check=(not expect_cmd_failure), msg="FileCheck'ing result of `{0}`".format(command)) + self.assertTrue((not expect_cmd_failure) == self.res.Succeeded()) + # Get the error text if there was an error, and the regular text if not. output = self.res.GetOutput() if self.res.Succeeded() \ else self.res.GetError() -- 2.7.4