From: Vedant Kumar Date: Tue, 10 Sep 2019 18:36:53 +0000 (+0000) Subject: [lldbtest] Add an "expected_cmd_failure" option to the filecheck helper X-Git-Tag: llvmorg-11-init~9539 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3ef7dbd6650d53af79dedbfcd3c85a96b29c96bb;p=platform%2Fupstream%2Fllvm.git [lldbtest] Add an "expected_cmd_failure" option to the filecheck helper llvm-svn: 371544 --- 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()