aboutsummaryrefslogtreecommitdiffstats
path: root/test/lib/llvm.exp
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2009-06-12 05:18:32 +0000
committerNick Lewycky <nicholas@mxc.ca>2009-06-12 05:18:32 +0000
commit084f7bf8a741fdeb97bf7f2a1befd11758f504e7 (patch)
treed537e5c3cad12387654eff80b45cca7843b48f9d /test/lib/llvm.exp
parentaf0f65fe6ad750983eadcb03b7c41143cca73298 (diff)
downloadexternal_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.exp2
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
}