diff options
author | Pavel Labath <labath@google.com> | 2018-06-21 13:55:19 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2018-06-21 13:55:19 +0000 |
commit | 30f2e61b97effae7dade5f617482b16b778629b9 (patch) | |
tree | 54f61adefa47199579399617e57cc180399804e8 /lldb/packages/Python | |
parent | 4bd5c4760127319c3c1cf10c7cabc31fcd6f2246 (diff) | |
download | bcm5719-llvm-30f2e61b97effae7dade5f617482b16b778629b9.tar.gz bcm5719-llvm-30f2e61b97effae7dade5f617482b16b778629b9.zip |
Disable gmodules tests on linux
These tests are extremely environment-dependent. if the environment is
not module-enabled (which is the likely scenario), they won't test
anything. If one happens to have a module-enabled libc++, then the he
will start running into problems.
The first one is that the debug info in pcm file contains relocations
that ObjectFileELF doesn't handle (particularly on non-x86
architectures), but even after that is resolved, it seems we still are
unable to pull debug info out of the pcm file. I've filed pr37893 to
track that, and I am disabling gmodules tests on linux until these
issues are resolved.
llvm-svn: 335235
Diffstat (limited to 'lldb/packages/Python')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/test_categories.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/test_categories.py b/lldb/packages/Python/lldbsuite/test/test_categories.py index 46e3f3409df..42ae019bc8f 100644 --- a/lldb/packages/Python/lldbsuite/test/test_categories.py +++ b/lldb/packages/Python/lldbsuite/test/test_categories.py @@ -58,7 +58,7 @@ def is_supported_on_platform(category, platform, compiler_path): 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 ["linux", "freebsd", "darwin", "macosx", "ios", "watchos", "tvos", "bridgeos"]: + if platform not in ["freebsd", "darwin", "macosx", "ios", "watchos", "tvos", "bridgeos"]: return False return gmodules.is_compiler_clang_with_gmodules(compiler_path) return True |