diff options
author | Greg Clayton <gclayton@apple.com> | 2016-07-01 21:25:20 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2016-07-01 21:25:20 +0000 |
commit | c7bb34f6ec9714ee717ca2166e06aae2c34e9041 (patch) | |
tree | d8df7a32cf96043d66e627b98f0e6a0a86f3f92d /lldb/packages/Python/lldbsuite/test | |
parent | ff12edbff43f630ebddd7c1c7e76cd8b7324781c (diff) | |
download | bcm5719-llvm-c7bb34f6ec9714ee717ca2166e06aae2c34e9041.tar.gz bcm5719-llvm-c7bb34f6ec9714ee717ca2166e06aae2c34e9041.zip |
Thread local storage was already broken on Linux and the tests were passing because there was a dectorator:
@unittest2.expectedFailure("rdar://7796742")
Which was covering up the fact this was failing on linux and hexagon. I added back a decorator so we don't break any build bots.
llvm-svn: 274388
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/TestTlsGlobals.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/TestTlsGlobals.py b/lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/TestTlsGlobals.py index 8e4f17ab39d..9a5ff555c1d 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/TestTlsGlobals.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/TestTlsGlobals.py @@ -27,6 +27,7 @@ class TlsGlobalTestCase(TestBase): self.addTearDownHook(lambda: self.runCmd("settings remove target.env-vars " + self.dylibPath)) @skipIfWindows # TLS works differently on Windows, this would need to be implemented separately. + @unittest2.expectedFailure("now works on Darwin, but not linux") def test(self): """Test thread-local storage.""" self.build() |