diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-12-09 00:14:36 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-12-09 00:14:36 +0000 |
| commit | 0c6387f7599b33436519859757391ea9133c5df8 (patch) | |
| tree | 6cc37c7687f9fcec57f7d64cf3403ebe04a3ce05 /clang/test/Modules | |
| parent | ae394819c817c20c37cc8f7c4b5180c331321abd (diff) | |
| download | bcm5719-llvm-0c6387f7599b33436519859757391ea9133c5df8.tar.gz bcm5719-llvm-0c6387f7599b33436519859757391ea9133c5df8.zip | |
[modules] If the same .pcm file is imported via two different paths, don't
complain that the contained modules are defined twice.
llvm-svn: 223724
Diffstat (limited to 'clang/test/Modules')
| -rw-r--r-- | clang/test/Modules/explicit-build-relpath.cpp | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/clang/test/Modules/explicit-build-relpath.cpp b/clang/test/Modules/explicit-build-relpath.cpp new file mode 100644 index 00000000000..d9c15660b6a --- /dev/null +++ b/clang/test/Modules/explicit-build-relpath.cpp @@ -0,0 +1,49 @@ +// REQUIRES: shell +// +// RUN: rm -rf %t +// RUN: mkdir %t +// RUN: cd %t + +// ---------------------- +// Build modules A and B. +// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \ +// RUN: -fmodule-name=a -emit-module %S/Inputs/explicit-build/module.modulemap -o a.pcm +// +// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \ +// RUN: -fmodule-file=a.pcm \ +// RUN: -fmodule-name=b -emit-module %S/Inputs/explicit-build/module.modulemap -o b-rel.pcm +// +// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \ +// RUN: -fmodule-file=%t/a.pcm \ +// RUN: -fmodule-name=b -emit-module %S/Inputs/explicit-build/module.modulemap -o b-abs.pcm + +// ------------------------------------------ +// Mix and match relative and absolute paths. +// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \ +// RUN: -I%S/Inputs/explicit-build \ +// RUN: -fmodule-file=%t/a.pcm \ +// RUN: -fmodule-file=a.pcm \ +// RUN: -verify %s +// +// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \ +// RUN: -I%S/Inputs/explicit-build \ +// RUN: -fmodule-file=%t/a.pcm \ +// RUN: -fmodule-file=b-rel.pcm \ +// RUN: -verify %s +// +// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \ +// RUN: -I%S/Inputs/explicit-build \ +// RUN: -fmodule-file=a.pcm \ +// RUN: -fmodule-file=b-abs.pcm \ +// RUN: -verify %s +// +// RUN: not %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \ +// RUN: -I%S/Inputs/explicit-build \ +// RUN: -fmodule-file=b-rel.pcm \ +// RUN: -fmodule-file=b-abs.pcm \ +// RUN: -verify %s 2>&1 | FileCheck %s +// CHECK: module 'b' is defined in both '{{.*}}b-rel.pcm' and '{{.*}}b-abs.pcm' + +#include "a.h" +static_assert(a == 1, ""); +// expected-no-diagnostics |

