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 | 084f7bf8a741fdeb97bf7f2a1befd11758f504e7 (patch) | |
tree | d537e5c3cad12387654eff80b45cca7843b48f9d /test/lib/llvm.exp | |
parent | af0f65fe6ad750983eadcb03b7c41143cca73298 (diff) | |
download | external_llvm-084f7bf8a741fdeb97bf7f2a1befd11758f504e7.zip external_llvm-084f7bf8a741fdeb97bf7f2a1befd11758f504e7.tar.gz external_llvm-084f7bf8a741fdeb97bf7f2a1befd11758f504e7.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/llvm.exp')
-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 } |