llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-lldb Author: Dmitry Vasilyev (slydiman) <details> <summary>Changes</summary> --- Full diff: https://github.com/llvm/llvm-project/pull/90607.diff 1 Files Affected: - (modified) lldb/packages/Python/lldbsuite/test/decorators.py (+1-1) ``````````diff diff --git a/lldb/packages/Python/lldbsuite/test/decorators.py b/lldb/packages/Python/lldbsuite/test/decorators.py index 7fb88cef165356..79cc0a2aeacbeb 100644 --- a/lldb/packages/Python/lldbsuite/test/decorators.py +++ b/lldb/packages/Python/lldbsuite/test/decorators.py @@ -1098,7 +1098,7 @@ def is_feature_enabled(): ).decode("utf-8") # If 'feature: 1' was output, then this feature is available and # the test should not be skipped. - if re.match("%s: 1\s*" % feature, output): + if re.match(r"%s: 1\s*" % feature, output): return None else: return "%s is not supported on this system." % feature `````````` </details> https://github.com/llvm/llvm-project/pull/90607 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits