aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Modules/modify-module.m3
-rw-r--r--test/PCH/modified-header-crash.c3
2 files changed, 6 insertions, 0 deletions
diff --git a/test/Modules/modify-module.m b/test/Modules/modify-module.m
index 7ec99068fa..529c7ac9d7 100644
--- a/test/Modules/modify-module.m
+++ b/test/Modules/modify-module.m
@@ -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(); }
diff --git a/test/PCH/modified-header-crash.c b/test/PCH/modified-header-crash.c
index a5ae402353..4c21a8c2b8 100644
--- a/test/PCH/modified-header-crash.c
+++ b/test/PCH/modified-header-crash.c
@@ -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;
}