Include '.test' suffix in target specific lit configs that need it
authorDavid Blaikie <dblaikie@gmail.com>
Mon, 18 Mar 2013 20:31:44 +0000 (20:31 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Mon, 18 Mar 2013 20:31:44 +0000 (20:31 +0000)
Apparently my final cleanup to use a relevant suffix for these tests before
committing r176831 caused them to stop running since lit wasn't configured to
run tests with that suffix in those directories (why don't we just have a
global suffix list?). So, add the suffix to the relevant directories & fix the
test that has bitrotted over the last week due to my debug info schema changes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177315 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/ARM/lit.local.cfg
test/CodeGen/Inputs/DbgValueOtherTargets.ll
test/CodeGen/MBlaze/lit.local.cfg
test/CodeGen/MSP430/lit.local.cfg
test/CodeGen/Mips/lit.local.cfg
test/CodeGen/PowerPC/lit.local.cfg
test/CodeGen/SPARC/lit.local.cfg
test/CodeGen/Thumb/lit.local.cfg
test/CodeGen/X86/lit.local.cfg
test/CodeGen/XCore/lit.local.cfg

index cb77b09ef4adbcf6481e27d0577855a7e17a8c36..4d75f581a1d2581f7a3912f1bbac4d59f2f645d1 100644 (file)
@@ -1,4 +1,4 @@
-config.suffixes = ['.ll', '.c', '.cpp']
+config.suffixes = ['.ll', '.c', '.cpp', '.test']
 
 targets = set(config.root.targets_to_build.split())
 if not 'ARM' in targets:
index 3f244f6891115646007cd33015d4aa5353c81e44..9308c43fa7e13ff0343aeb2bf9d7780456b60728 100644 (file)
@@ -12,11 +12,10 @@ declare void @llvm.dbg.declare(metadata, metadata) nounwind readnone
 declare void @llvm.dbg.value(metadata, i64, metadata) nounwind readnone
 
 !llvm.dbg.cu = !{!2}
-!11 = metadata !{metadata !0}
 
 !0 = metadata !{i32 786478, i32 0, metadata !1, metadata !"main", metadata !"main", metadata !"", metadata !1, i32 2, metadata !3, i1 false, i1 true, i32 0, i32 0, null, i32 0, i1 false, i32 ()* @main} ; [ DW_TAG_subprogram ]
-!1 = metadata !{i32 786473, metadata !"/tmp/x.c", metadata !"/Users/manav", metadata !2} ; [ DW_TAG_file_type ]
-!2 = metadata !{i32 786449, i32 0, i32 12, metadata !"/tmp/x.c", metadata !"/Users/manav", metadata !"clang version 2.9 (trunk 120996)", i1 true, i1 false, metadata !"", i32 0, null, null, metadata !11, null, null} ; [ DW_TAG_compile_unit ]
+!1 = metadata !{i32 786473, metadata !12} ; [ DW_TAG_file_type ]
+!2 = metadata !{i32 786449, i32 0, i32 12, metadata !1, metadata !"clang version 2.9 (trunk 120996)", i1 false, metadata !"", i32 0, null, null, metadata !11, null, null} ; [ DW_TAG_compile_unit ]
 !3 = metadata !{i32 786453, metadata !1, metadata !"", metadata !1, i32 0, i64 0, i64 0, i64 0, i32 0, null, metadata !4, i32 0, null} ; [ DW_TAG_subroutine_type ]
 !4 = metadata !{metadata !5}
 !5 = metadata !{i32 786468, metadata !2, metadata !"int", metadata !1, i32 0, i64 32, i64 32, i64 0, i32 0, i32 5} ; [ DW_TAG_base_type ]
@@ -25,3 +24,5 @@ declare void @llvm.dbg.value(metadata, i64, metadata) nounwind readnone
 !8 = metadata !{i32 786443, metadata !0, i32 2, i32 12, metadata !1, i32 0} ; [ DW_TAG_lexical_block ]
 !9 = metadata !{i32 3, i32 11, metadata !8, null}
 !10 = metadata !{i32 4, i32 2, metadata !8, null}
+!11 = metadata !{metadata !0}
+!12 = metadata !{metadata !"/tmp/x.c", metadata !"/Users/manav"}
index e236200d75726825df9220c65b16b45c50175c3e..ff4928de4b9c618fc68746a97fb379a89f877107 100644 (file)
@@ -1,4 +1,4 @@
-config.suffixes = ['.ll', '.c', '.cpp']
+config.suffixes = ['.ll', '.c', '.cpp', '.test']
 
 targets = set(config.root.targets_to_build.split())
 if not 'MBlaze' in targets:
index 972732ebad3015f9040ef2e21d7bcd678ac394f0..0ca9fc9c6912c93f4d08e957a1086f870047ae7f 100644 (file)
@@ -1,4 +1,4 @@
-config.suffixes = ['.ll', '.c', '.cpp']
+config.suffixes = ['.ll', '.c', '.cpp', '.test']
 
 targets = set(config.root.targets_to_build.split())
 if not 'MSP430' in targets:
index 0587d3243e6b207053f1f35682465c333d1726f4..e157c540b53833625b60559a9a771b13d594fcd7 100644 (file)
@@ -1,4 +1,4 @@
-config.suffixes = ['.ll', '.c', '.cpp']
+config.suffixes = ['.ll', '.c', '.cpp', '.test']
 
 targets = set(config.root.targets_to_build.split())
 if not 'Mips' in targets:
index 4019eca0bb88f9d2d741be6e5d5b1aec3965e291..aaa31d93d5f29563375ba937f20577a116b30f37 100644 (file)
@@ -1,4 +1,4 @@
-config.suffixes = ['.ll', '.c', '.cpp']
+config.suffixes = ['.ll', '.c', '.cpp', '.test']
 
 targets = set(config.root.targets_to_build.split())
 if not 'PowerPC' in targets:
index 786fee9e6610b179bd3600780e9bd160ee3f58ff..6f30a8797967370cd46a7aa99153dbd90caa90c0 100644 (file)
@@ -1,4 +1,4 @@
-config.suffixes = ['.ll', '.c', '.cpp']
+config.suffixes = ['.ll', '.c', '.cpp', '.test']
 
 targets = set(config.root.targets_to_build.split())
 if not 'Sparc' in targets:
index cb77b09ef4adbcf6481e27d0577855a7e17a8c36..4d75f581a1d2581f7a3912f1bbac4d59f2f645d1 100644 (file)
@@ -1,4 +1,4 @@
-config.suffixes = ['.ll', '.c', '.cpp']
+config.suffixes = ['.ll', '.c', '.cpp', '.test']
 
 targets = set(config.root.targets_to_build.split())
 if not 'ARM' in targets:
index a8ad0f1a28b23766c81a5a49d05536859b8226bf..9d285bf4e238d15d7d06af0160bdb679c461c563 100644 (file)
@@ -1,4 +1,4 @@
-config.suffixes = ['.ll', '.c', '.cpp']
+config.suffixes = ['.ll', '.c', '.cpp', '.test']
 
 targets = set(config.root.targets_to_build.split())
 if not 'X86' in targets:
index f8726af57f7996a7a9639ed313cdee5481bb187c..8756f37fe8a186520c1a63aa59ce54f0cc9e76af 100644 (file)
@@ -1,4 +1,4 @@
-config.suffixes = ['.ll', '.c', '.cpp']
+config.suffixes = ['.ll', '.c', '.cpp', '.test']
 
 targets = set(config.root.targets_to_build.split())
 if not 'XCore' in targets: