diff options
author | Pavel Labath <labath@google.com> | 2016-05-05 08:33:56 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-05-05 08:33:56 +0000 |
commit | c4f309a6bd20a64a97d42e26ee44f0b294f500d7 (patch) | |
tree | 8413da89033273ed5b33d6e61bf17a25b68cabd4 /lldb/packages/Python/lldbsuite/test | |
parent | b9436bd4933f5f49d75a22ba61f20d154fdf4af5 (diff) | |
download | bcm5719-llvm-c4f309a6bd20a64a97d42e26ee44f0b294f500d7.tar.gz bcm5719-llvm-c4f309a6bd20a64a97d42e26ee44f0b294f500d7.zip |
Fix syntax errors in TestEnumTypes
llvm-svn: 268616
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/enum_types/TestEnumTypes.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/enum_types/TestEnumTypes.py b/lldb/packages/Python/lldbsuite/test/lang/c/enum_types/TestEnumTypes.py index 6fd176f5266..044accf14f6 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/enum_types/TestEnumTypes.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/enum_types/TestEnumTypes.py @@ -8,6 +8,7 @@ import os, time import lldb from lldbsuite.test.lldbtest import * import lldbsuite.test.lldbutil as lldbutil +from lldbsuite.test.decorators import * class EnumTypesTestCase(TestBase): @@ -19,7 +20,7 @@ class EnumTypesTestCase(TestBase): # Find the line number to break inside main(). self.line = line_number('main.c', '// Set break point at this line.') - @expectedFailAll(oslist=['windows']) // derefing the null pointer "works" on Windows + @expectedFailureAll(oslist=['windows']) # derefing the null pointer "works" on Windows def test(self): """Test 'image lookup -t days' and check for correct display and enum value printing.""" self.build() |