From 738e858bfcdfa962217264f3f07105d5f16ec3b2 Mon Sep 17 00:00:00 2001 From: Ben Langmuir Date: Mon, 14 Jul 2014 21:14:28 +0000 Subject: [PATCH] Try harder to supress the test from r212975 on Windows The attempt in r212980 was broken because we might not fail if LLVM_ON_UNIX is enabled for cross compiling to Windows, and it didn't consider mingw either. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@212989 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Modules/inferred-framework-case.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Modules/inferred-framework-case.m b/test/Modules/inferred-framework-case.m index a38a08d1db..e511155de9 100644 --- a/test/Modules/inferred-framework-case.m +++ b/test/Modules/inferred-framework-case.m @@ -1,7 +1,7 @@ // RUN: rm -rf %t // RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -F %S/Inputs %s -verify -DA -// FIXME: getCanonicalName() is not implemented on Windows. -// XFAIL: win32 +// FIXME: PR20299 - getCanonicalName() is not implemented on Windows. +// REQUIRES: shell @import MOdule; // expected-error{{module 'MOdule' not found}} @import Module; -- 2.50.1