diff options
author | Pavel Labath <labath@google.com> | 2017-07-06 11:43:20 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-07-06 11:43:20 +0000 |
commit | 0fa83961650455c1ac714e09ebdb8dd133345c03 (patch) | |
tree | 4c6fc35e6d816f38af32daf675c9497b4550a874 /lldb/packages/Python | |
parent | 40c0ae200f2d1656a48121ab64dff23670fce0c1 (diff) | |
download | bcm5719-llvm-0fa83961650455c1ac714e09ebdb8dd133345c03.tar.gz bcm5719-llvm-0fa83961650455c1ac714e09ebdb8dd133345c03.zip |
Revert "Android.rules: build x86 tests with -mstackrealign"
Starting with android ndk r15, clang much more tests are affected by the
-mstackrealign bugl (now nearly all functions are affected, and not just
the ones requiring 16-byte alignment). Due to their numbers, Xfailing
all of them is not a viable option, so we will just have to declare this
configuration unsupported, and wait until ndk ships a clang version that
has this bug fixed.
llvm-svn: 307252
Diffstat (limited to 'lldb/packages/Python')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py | 2 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/make/Android.rules | 4 |
2 files changed, 0 insertions, 6 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py b/lldb/packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py index cf435a4aae9..1750bd31b3d 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py @@ -31,8 +31,6 @@ class ReturnValueTestCase(TestBase): "<=", "3.6"], archs=["i386"]) - @expectedFailureAll(compiler="clang", compiler_version=["<=", "5.0.300080"], - triple='.*-android', archs=["i386"]) @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778") @add_test_categories(['pyapi']) def test_with_python(self): diff --git a/lldb/packages/Python/lldbsuite/test/make/Android.rules b/lldb/packages/Python/lldbsuite/test/make/Android.rules index 0a725494d35..058401f425a 100644 --- a/lldb/packages/Python/lldbsuite/test/make/Android.rules +++ b/lldb/packages/Python/lldbsuite/test/make/Android.rules @@ -90,7 +90,3 @@ else ARCH_LDFLAGS += $(NDK_ROOT)/sources/cxx-stl/gnu-libstdc++/4.9/libs/$(STL_ARCH)/libgnustl_static.a endif - -ifeq "$(ARCH)" "i386" - ARCH_CFLAGS += -mstackrealign -endif |