diff options
author | Daniel Jasper <djasper@google.com> | 2013-12-11 09:11:12 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2013-12-11 09:11:12 +0000 |
commit | 7e468e0f681e895d7ae6f61f8b6772cadad2fc88 (patch) | |
tree | 525e2272535759183fe3da8e3660edb777192ad0 /clang/test | |
parent | 7e4660508d6c6bab548657302abe30238f54d515 (diff) | |
download | bcm5719-llvm-7e468e0f681e895d7ae6f61f8b6772cadad2fc88.tar.gz bcm5719-llvm-7e468e0f681e895d7ae6f61f8b6772cadad2fc88.zip |
Change layering warning tests to not actually build modules.
Specifically, we want to warn only for direct layering violations for
the modules we are calling clang on.
This temporarily unblocks
http://llvm-reviews.chandlerc.com/D2374
Once that is in, we'll also want to investigate whether to check the
layering in the build step of modules that we build transitively.
llvm-svn: 197021
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/Modules/Inputs/declare-use/module.map | 2 | ||||
-rw-r--r-- | clang/test/Modules/declare-use1.cpp | 2 | ||||
-rw-r--r-- | clang/test/Modules/declare-use2.cpp | 4 |
3 files changed, 5 insertions, 3 deletions
diff --git a/clang/test/Modules/Inputs/declare-use/module.map b/clang/test/Modules/Inputs/declare-use/module.map index 774fc37760c..ba615b67144 100644 --- a/clang/test/Modules/Inputs/declare-use/module.map +++ b/clang/test/Modules/Inputs/declare-use/module.map @@ -9,11 +9,13 @@ module XB { module XC { header "c.h" use XA + // Intentionally doesn't use XB to show that -fdecl-use isn't transitive. } module XD { header "d.h" use XA + // Intentionally doesn't use XB to show that -fdecl-use isn't transitive. } module XE { diff --git a/clang/test/Modules/declare-use1.cpp b/clang/test/Modules/declare-use1.cpp index 5b344032d29..49993cf488c 100644 --- a/clang/test/Modules/declare-use1.cpp +++ b/clang/test/Modules/declare-use1.cpp @@ -1,5 +1,5 @@ // RUN: rm -rf %t -// RUN: %clang_cc1 -x objective-c++ -fmodules-cache-path=%t -fmodules -fmodules-decluse -fmodule-name=XG -I %S/Inputs/declare-use %s -verify +// RUN: %clang_cc1 -fmodule-maps -fmodules-cache-path=%t -fmodules-decluse -fmodule-name=XG -I %S/Inputs/declare-use %s -verify #include "g.h" #include "e.h" diff --git a/clang/test/Modules/declare-use2.cpp b/clang/test/Modules/declare-use2.cpp index 15c57ca36d8..45352891685 100644 --- a/clang/test/Modules/declare-use2.cpp +++ b/clang/test/Modules/declare-use2.cpp @@ -1,7 +1,7 @@ // RUN: rm -rf %t -// RUN: %clang_cc1 -x objective-c++ -fmodules-cache-path=%t -fmodules -fmodules-decluse -fmodule-name=XH -I %S/Inputs/declare-use %s -verify +// RUN: %clang_cc1 -fmodule-maps -fmodules-cache-path=%t -fmodules-decluse -fmodule-name=XH -I %S/Inputs/declare-use %s -verify #include "h.h" #include "e.h" -#include "f.h" // expected-error {{does not depend on a module exporting}} +#include "f.h" // expected-error {{module XH does not depend on a module exporting 'f.h'}} const int h2 = h1+e+f; |