[Lldb-commits] [PATCH] D128034: [lldb] [test] Disable gmodules testing on FreeBSD
Michał Górny via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Jun 17 00:44:08 PDT 2022
mgorny created this revision.
mgorny added reviewers: emaste, krytarowski, labath.
Herald added a subscriber: arichardson.
Herald added a project: All.
mgorny requested review of this revision.
The -gmodule tests currently fail on FreeBSD due to include bugs:
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=264730
Sponsored by: The FreeBSD Foundation
https://reviews.llvm.org/D128034
Files:
lldb/packages/Python/lldbsuite/test/test_categories.py
Index: lldb/packages/Python/lldbsuite/test/test_categories.py
===================================================================
--- lldb/packages/Python/lldbsuite/test/test_categories.py
+++ lldb/packages/Python/lldbsuite/test/test_categories.py
@@ -64,7 +64,7 @@
return platform in ["darwin", "macosx", "ios", "watchos", "tvos", "bridgeos"]
elif category == "gmodules":
# First, check to see if the platform can even support gmodules.
- if platform not in ["freebsd", "darwin", "macosx", "ios", "watchos", "tvos", "bridgeos"]:
+ if platform not in ["darwin", "macosx", "ios", "watchos", "tvos", "bridgeos"]:
return False
return gmodules.is_compiler_clang_with_gmodules(compiler_path)
return True
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D128034.437813.patch
Type: text/x-patch
Size: 763 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220617/ff645502/attachment.bin>
More information about the lldb-commits
mailing list