r212989 - Try harder to supress the test from r212975 on Windows

Ben Langmuir blangmuir at apple.com
Mon Jul 14 14:14:28 PDT 2014


Author: benlangmuir
Date: Mon Jul 14 16:14:28 2014
New Revision: 212989

URL: http://llvm.org/viewvc/llvm-project?rev=212989&view=rev
Log:
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.

Modified:
    cfe/trunk/test/Modules/inferred-framework-case.m

Modified: cfe/trunk/test/Modules/inferred-framework-case.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Modules/inferred-framework-case.m?rev=212989&r1=212988&r2=212989&view=diff
==============================================================================
--- cfe/trunk/test/Modules/inferred-framework-case.m (original)
+++ cfe/trunk/test/Modules/inferred-framework-case.m Mon Jul 14 16:14:28 2014
@@ -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;





More information about the cfe-commits mailing list