Skip to content

Commit 9407439

Browse files
author
Michał Górny
committed
[lldb] [test] Disable gmodules testing on FreeBSD
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 Differential Revision: https://reviews.llvm.org/D128034
1 parent f8c6de8 commit 9407439

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lldb/packages/Python/lldbsuite/test/test_categories.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def is_supported_on_platform(category, platform, compiler_path):
6464
return platform in ["darwin", "macosx", "ios", "watchos", "tvos", "bridgeos"]
6565
elif category == "gmodules":
6666
# First, check to see if the platform can even support gmodules.
67-
if platform not in ["freebsd", "darwin", "macosx", "ios", "watchos", "tvos", "bridgeos"]:
67+
if platform not in ["darwin", "macosx", "ios", "watchos", "tvos", "bridgeos"]:
6868
return False
6969
return gmodules.is_compiler_clang_with_gmodules(compiler_path)
7070
return True

0 commit comments

Comments
 (0)