From 9cb9774199296771380e50d929d4c1303546a044 Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Mon, 14 Apr 2014 22:30:21 +0000 Subject: [PATCH] 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 --- .../Inputs/modules-with-same-name/path1/A/module.modulemap | 2 ++ .../Inputs/modules-with-same-name/path2/A/module.modulemap | 2 ++ 2 files changed, 4 insertions(+) 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" } -- 2.40.0