From 10ff1333e49029a06caec3a6858b752e404a1287 Mon Sep 17 00:00:00 2001 From: Filipe Cabecinhas Date: Mon, 2 Feb 2015 23:17:54 +0000 Subject: [PATCH] clang lit.cfg: Fix a bug pointed by Sean Silva llvm-svn: 227894 --- clang/test/lit.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/lit.cfg b/clang/test/lit.cfg index 4df79db..4200a4a 100644 --- a/clang/test/lit.cfg +++ b/clang/test/lit.cfg @@ -405,7 +405,7 @@ if not re.match(r'.*-win32$', config.target_triple): config.available_features.add('non-ms-sdk') # Not set on native PS4 environment. -if '*-scei-ps4' != config.target_triple: +if not re.match(r'.*-scei-ps4', config.target_triple): config.available_features.add('non-ps4-sdk') # [PR8833] LLP64-incompatible tests -- 2.7.4