[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
Mon Jun 20 10:42:44 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG94074399ab0a: [lldb] [test] Disable gmodules testing on FreeBSD (authored by mgorny).
Herald added a project: LLDB.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D128034/new/
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.438442.patch
Type: text/x-patch
Size: 763 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220620/7cb97007/attachment.bin>
More information about the lldb-commits
mailing list