[test][MC] Rehabilitate llvm/test/MC/COFF/bigobj.py
authorHubert Tong <hubert.reinterpretcast@gmail.com>
Tue, 22 Sep 2020 17:59:00 +0000 (13:59 -0400)
committerHubert Tong <hubert.reinterpretcast@gmail.com>
Tue, 22 Sep 2020 18:23:32 +0000 (14:23 -0400)
The subject test was not actually running. This patch adds the
relevant suffix to the list of lit case filename extensions for the
enclosing directory.

Minor adjustments are also made to deal with bit rot.

Reviewed By: daltenty

Differential Revision: https://reviews.llvm.org/D87122

llvm/test/MC/COFF/bigobj.py
llvm/test/MC/COFF/lit.local.cfg

index 7908fb3..7aab892 100644 (file)
@@ -1,4 +1,4 @@
-# RUN: python %s | llvm-mc -filetype=obj -triple i686-pc-win32 - | llvm-readobj -h | FileCheck %s
+# RUN: python %s | llvm-mc -filetype=obj -triple i686-pc-win32 - | llvm-readobj -h | FileCheck %s
 
 from __future__ import print_function
 
@@ -15,6 +15,7 @@ num_sections = 65277
 # CHECK-NEXT:   TimeDateStamp: {{[0-9]+}}
 # CHECK-NEXT:   PointerToSymbolTable: 0x{{[0-9A-F]+}}
 # CHECK-NEXT:   SymbolCount: 195837
+# CHECK-NEXT:   StringTableSize: {{[0-9]+}}
 # CHECK-NEXT:   OptionalHeaderSize: 0
 # CHECK-NEXT:   Characteristics [ (0x0)
 # CHECK-NEXT:   ]
index c8625f4..03c0f9b 100644 (file)
@@ -1,2 +1,4 @@
 if not 'X86' in config.root.targets:
     config.unsupported = True
+
+config.suffixes.add('.py')