[cfe-commits] r169945 - in /cfe/trunk/test: Modules/modify-module.m PCH/modified-header-crash.c
NAKAMURA Takumi
geek4civic at gmail.com
Tue Dec 11 16:51:38 PST 2012
Author: chapuni
Date: Tue Dec 11 18:51:38 2012
New Revision: 169945
URL: http://llvm.org/viewvc/llvm-project?rev=169945&view=rev
Log:
clang/test: Suppress two tests on win32 for now, since, not sure, in r169829 to r169831.
"ansi-escape-sequences" is easy convenient to exclude win32. Please be patient.
Modified:
cfe/trunk/test/Modules/modify-module.m
cfe/trunk/test/PCH/modified-header-crash.c
Modified: cfe/trunk/test/Modules/modify-module.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Modules/modify-module.m?rev=169945&r1=169944&r2=169945&view=diff
==============================================================================
--- cfe/trunk/test/Modules/modify-module.m (original)
+++ cfe/trunk/test/Modules/modify-module.m Tue Dec 11 18:51:38 2012
@@ -13,6 +13,9 @@
// RUN: echo 'int getA(); int getA2();' > %t/include/A.h
// RUN: %clang_cc1 -fmodule-cache-path %t/cache -fmodules -I %t/include %s -verify
+// FIXME: It is intended to suppress this on win32.
+// REQUIRES: ansi-escape-sequences
+
@import B;
int getValue() { return getA() + getB(); }
Modified: cfe/trunk/test/PCH/modified-header-crash.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/PCH/modified-header-crash.c?rev=169945&r1=169944&r2=169945&view=diff
==============================================================================
--- cfe/trunk/test/PCH/modified-header-crash.c (original)
+++ cfe/trunk/test/PCH/modified-header-crash.c Tue Dec 11 18:51:38 2012
@@ -5,6 +5,9 @@
// RUN: echo 'int foobar;' >> %t.h
// RUN: not %clang_cc1 %s -include-pch %t -fsyntax-only
+// FIXME: It is intended to suppress this on win32.
+// REQUIRES: ansi-escape-sequences
+
void f(void) {
foo = 3;
}
More information about the cfe-commits
mailing list