From 8e2f09d61582f8e0ce8481972f47b2e1acd0175c Mon Sep 17 00:00:00 2001 From: Vedant Kumar Date: Fri, 12 Oct 2018 19:29:59 +0000 Subject: [dotest] Make a missing FileCheck binary a warning, not an error This allows bots which haven't updated to pass in --filecheck to dotest.py to run more tests. FileCheck-dependent tests will continue to fail. Differential Revision: https://reviews.llvm.org/D53175 llvm-svn: 344401 --- lldb/packages/Python/lldbsuite/test/configuration.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py') diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py index f92b898..d4a65cd 100644 --- a/lldb/packages/Python/lldbsuite/test/configuration.py +++ b/lldb/packages/Python/lldbsuite/test/configuration.py @@ -188,5 +188,5 @@ def get_filecheck_path(): """ Get the path to the FileCheck testing tool. """ - assert os.path.lexists(filecheck) - return filecheck + if os.path.lexists(filecheck): + return filecheck -- cgit v1.1