forked from OSchip/llvm-project
In an XFAIL line, treat "XFAIL: foo*bar" as a regular expression to be matched
against the target triple, instead of equivalent to "XFAIL: *". llvm-svn: 73219
This commit is contained in:
parent
2693c504c2
commit
e68347bde5
|
@ -184,7 +184,7 @@ proc RunLLVMTests { test_source_files } {
|
|||
|
||||
#split up target if more then 1 specified
|
||||
foreach target [split $targets ,] {
|
||||
if { [regexp {\*} $target match] } {
|
||||
if { $target == "*" } {
|
||||
if {$targetPASS != 1} {
|
||||
set outcome XFAIL
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue