From 5e3d1414a4a6c3ac585723cb47e88e5ab3253c69 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Fri, 20 Jun 2014 15:04:25 +0000 Subject: [PATCH] Disable Modules/dependency-dump-dependent-module.m on win32 for now. FIXME: This fails on win32 due to ERROR_FILENAME_EXCED_RANGE if the working directory is too deep. We should make Win32/Path.inc capable of long pathnames with '\\?\'. llvm-svn: 211363 --- clang/test/Modules/dependency-dump-dependent-module.m | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/clang/test/Modules/dependency-dump-dependent-module.m b/clang/test/Modules/dependency-dump-dependent-module.m index 2f75dd6..3b04435 100644 --- a/clang/test/Modules/dependency-dump-dependent-module.m +++ b/clang/test/Modules/dependency-dump-dependent-module.m @@ -14,3 +14,9 @@ // VFS: 'name': "Sub2.h" @import AlsoDependsOnModule; + +// FIXME: This fails on win32 due to ERROR_FILENAME_EXCED_RANGE +// if the working directory is too deep. +// We should make Win32/Path.inc capable of long pathnames with '\\?\'. +// For now, this is suppressed on win32. +// REQUIRES: shell -- 2.7.4