mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Include '.test' suffix in target specific lit configs that need it
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. llvm-svn: 177315
This commit is contained in:
parent
4c028db480
commit
ae14af22c5
@ -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:
|
||||
|
@ -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"}
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user