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:
Nick Lewycky 2009-06-12 05:18:32 +00:00
parent 2693c504c2
commit e68347bde5
1 changed files with 1 additions and 1 deletions

View File

@ -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
}