diff options
author | Zachary Turner <zturner@google.com> | 2016-02-18 18:50:02 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-02-18 18:50:02 +0000 |
commit | 5d3b3c7de2b4f8fd3c5ef0fd6928e9f96b1d472d (patch) | |
tree | 771c325ba46e70ce979201c49ae151653b227546 /lldb/packages/Python/lldbsuite/test/functionalities/asan | |
parent | 8d39b2a213454ff495c30d6f94ed4e70a0109b59 (diff) | |
download | bcm5719-llvm-5d3b3c7de2b4f8fd3c5ef0fd6928e9f96b1d472d.tar.gz bcm5719-llvm-5d3b3c7de2b4f8fd3c5ef0fd6928e9f96b1d472d.zip |
Add target and host platform enumerations so we're not using strings.
Differential Revision: http://reviews.llvm.org/D17088
llvm-svn: 261241
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/asan')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py b/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py index f43374e631b..9cd5981e5df 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py @@ -10,6 +10,7 @@ import os, time import lldb from lldbsuite.test.decorators import * from lldbsuite.test.lldbtest import * +from lldbsuite.test import lldbplatform from lldbsuite.test import lldbutil class AsanTestCase(TestBase): @@ -20,7 +21,7 @@ class AsanTestCase(TestBase): @skipIfFreeBSD # llvm.org/pr21136 runtimes not yet available by default @skipIfRemote @skipUnlessCompilerRt - @expectedFailureDarwin + @expectedFailureAll(oslist=lldbplatform.darwin_all) def test (self): self.build () self.asan_tests () |