From 0faaa164282406f07328dad27d02f5d04334c829 Mon Sep 17 00:00:00 2001
From: NAKAMURA Takumi <geek4civic@gmail.com>
Date: Wed, 12 Dec 2012 00:51:38 +0000
Subject: [PATCH] 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.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169945 91177308-0d34-0410-b5e6-96231b3b80d8
---
 test/Modules/modify-module.m     | 3 +++
 test/PCH/modified-header-crash.c | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/test/Modules/modify-module.m b/test/Modules/modify-module.m
index 7ec99068fae..529c7ac9d75 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 a5ae4023536..4c21a8c2b82 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;
 }
-- 
GitLab