[Lldb-commits] [lldb] r268616 - Fix syntax errors in TestEnumTypes

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Thu May 5 01:33:56 PDT 2016


Author: labath
Date: Thu May  5 03:33:56 2016
New Revision: 268616

URL: http://llvm.org/viewvc/llvm-project?rev=268616&view=rev
Log:
Fix syntax errors in TestEnumTypes

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/lang/c/enum_types/TestEnumTypes.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/enum_types/TestEnumTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/enum_types/TestEnumTypes.py?rev=268616&r1=268615&r2=268616&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/enum_types/TestEnumTypes.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/enum_types/TestEnumTypes.py Thu May  5 03:33:56 2016
@@ -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()




More information about the lldb-commits mailing list