diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2009-06-12 05:18:32 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2009-06-12 05:18:32 +0000 |
commit | baaf36c5f017b78cd78010929766ef79effecdf6 (patch) | |
tree | d537e5c3cad12387654eff80b45cca7843b48f9d /test/lib | |
parent | 1638ede3e39ca279220e6382ba6082fa4fa8f425 (diff) | |
download | external_llvm-baaf36c5f017b78cd78010929766ef79effecdf6.zip external_llvm-baaf36c5f017b78cd78010929766ef79effecdf6.tar.gz external_llvm-baaf36c5f017b78cd78010929766ef79effecdf6.tar.bz2 |
In an XFAIL line, treat "XFAIL: foo*bar" as a regular expression to be matched
against the target triple, instead of equivalent to "XFAIL: *".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73219 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lib')
-rw-r--r-- | test/lib/llvm.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/llvm.exp b/test/lib/llvm.exp index d2ddb8f..3e2632f 100644 --- a/test/lib/llvm.exp +++ b/test/lib/llvm.exp @@ -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 } |