From: Nick Lewycky Date: Mon, 14 Apr 2014 22:30:21 +0000 (+0000) Subject: Make sure these two files are distinct, or else the modules system may, on certain... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9cb9774199296771380e50d929d4c1303546a044;p=clang Make sure these two files are distinct, or else the modules system may, on certain file systems, treat them as if they were the same file. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@206221 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Modules/Inputs/modules-with-same-name/path1/A/module.modulemap b/test/Modules/Inputs/modules-with-same-name/path1/A/module.modulemap index bbd9d674c9..76c3358335 100644 --- a/test/Modules/Inputs/modules-with-same-name/path1/A/module.modulemap +++ b/test/Modules/Inputs/modules-with-same-name/path1/A/module.modulemap @@ -1,3 +1,5 @@ +// path1. This comment keeps this file from being identical to +// path2/A/module.modulemap. module A { header "a.h" } diff --git a/test/Modules/Inputs/modules-with-same-name/path2/A/module.modulemap b/test/Modules/Inputs/modules-with-same-name/path2/A/module.modulemap index bbd9d674c9..2ff394378e 100644 --- a/test/Modules/Inputs/modules-with-same-name/path2/A/module.modulemap +++ b/test/Modules/Inputs/modules-with-same-name/path2/A/module.modulemap @@ -1,3 +1,5 @@ +// path2. This comment keeps this file from being identical to +// path1/A/module.modulemap. module A { header "a.h" }