From 098edc2a3a68782db93cf44804f5bb65bb17cf65 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Fri, 18 Sep 2015 08:11:36 +0000 Subject: [PATCH] clang/test/lit.cfg: *-ps4 doesn't have appropriate driver yet. Mark it as "non-clang-driver". git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@247977 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/lit.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lit.cfg b/test/lit.cfg index f78bb8749e..28588eeabe 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -409,7 +409,7 @@ if not re.match(r'^x86_64.*-(win32|mingw32|windows-gnu)$', config.target_triple) config.available_features.add('LP64') # [PR12920] "clang-driver" -- set if gcc driver is not used. -if not re.match(r'.*-(cygwin)$', config.target_triple): +if not re.match(r'.*-(cygwin|ps4)$', config.target_triple): config.available_features.add('clang-driver') # [PR18856] Depends to remove opened file. On win32, a file could be removed -- 2.50.1