2014-07-21 12:10:40 +08:00
|
|
|
// RUN: rm -rf %t
|
2015-01-23 07:07:47 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -DC1 -I%S/Inputs/macro-reexport %s -fmodules-cache-path=%t -verify
|
2015-06-16 08:08:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -DC1 -I%S/Inputs/macro-reexport -fmodules -fimplicit-module-maps %s -fmodules-cache-path=%t -verify
|
2015-01-23 07:07:47 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -DD1 -I%S/Inputs/macro-reexport %s -fmodules-cache-path=%t -verify
|
2015-06-16 08:08:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -DD1 -I%S/Inputs/macro-reexport -fmodules -fimplicit-module-maps %s -fmodules-cache-path=%t -verify
|
2015-01-23 07:07:47 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -DD2 -I%S/Inputs/macro-reexport %s -fmodules-cache-path=%t -verify
|
2015-06-16 08:08:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -DD2 -I%S/Inputs/macro-reexport -fmodules -fimplicit-module-maps %s -fmodules-cache-path=%t -verify
|
2015-01-23 07:07:47 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -DF1 -I%S/Inputs/macro-reexport %s -fmodules-cache-path=%t -verify
|
2015-06-16 08:08:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -DF1 -I%S/Inputs/macro-reexport -fmodules -fimplicit-module-maps %s -fmodules-cache-path=%t -verify
|
2015-05-02 05:22:17 +08:00
|
|
|
//
|
|
|
|
// RUN: %clang_cc1 -fmodules-local-submodule-visibility -fsyntax-only -DC1 -I%S/Inputs/macro-reexport %s -fmodules-cache-path=%t -verify
|
2015-06-16 08:08:24 +08:00
|
|
|
// RUN: %clang_cc1 -fmodules-local-submodule-visibility -fsyntax-only -DC1 -I%S/Inputs/macro-reexport -fmodules -fimplicit-module-maps %s -fmodules-cache-path=%t -verify
|
2015-05-02 05:22:17 +08:00
|
|
|
// RUN: %clang_cc1 -fmodules-local-submodule-visibility -fsyntax-only -DD1 -I%S/Inputs/macro-reexport %s -fmodules-cache-path=%t -verify
|
2015-06-16 08:08:24 +08:00
|
|
|
// RUN: %clang_cc1 -fmodules-local-submodule-visibility -fsyntax-only -DD1 -I%S/Inputs/macro-reexport -fmodules -fimplicit-module-maps %s -fmodules-cache-path=%t -verify
|
2015-05-02 05:22:17 +08:00
|
|
|
// RUN: %clang_cc1 -fmodules-local-submodule-visibility -fsyntax-only -DD2 -I%S/Inputs/macro-reexport %s -fmodules-cache-path=%t -verify
|
2015-06-16 08:08:24 +08:00
|
|
|
// RUN: %clang_cc1 -fmodules-local-submodule-visibility -fsyntax-only -DD2 -I%S/Inputs/macro-reexport -fmodules -fimplicit-module-maps %s -fmodules-cache-path=%t -verify
|
2015-05-02 05:22:17 +08:00
|
|
|
// RUN: %clang_cc1 -fmodules-local-submodule-visibility -fsyntax-only -DF1 -I%S/Inputs/macro-reexport %s -fmodules-cache-path=%t -verify
|
2015-06-16 08:08:24 +08:00
|
|
|
// RUN: %clang_cc1 -fmodules-local-submodule-visibility -fsyntax-only -DF1 -I%S/Inputs/macro-reexport -fmodules -fimplicit-module-maps %s -fmodules-cache-path=%t -verify
|
2014-07-21 12:10:40 +08:00
|
|
|
|
2014-07-25 12:40:03 +08:00
|
|
|
#if defined(F1)
|
|
|
|
#include "f1.h"
|
|
|
|
void f() { return assert(true); } // expected-error {{undeclared identifier 'd'}}
|
|
|
|
#include "e2.h" // undefines d1's macro
|
|
|
|
void g() { return assert(true); } // expected-error {{undeclared identifier 'assert'}}
|
|
|
|
#elif defined(D1)
|
|
|
|
#include "e1.h" // undefines c1's macro but not d1's macro
|
|
|
|
#include "d1.h"
|
|
|
|
void f() { return assert(true); } // expected-error {{undeclared identifier 'd'}}
|
|
|
|
#include "e2.h" // undefines d1's macro
|
|
|
|
void g() { return assert(true); } // expected-error {{undeclared identifier 'assert'}}
|
|
|
|
#elif defined(D2)
|
2014-07-21 12:10:40 +08:00
|
|
|
#include "d2.h"
|
|
|
|
void f() { return assert(true); } // expected-error {{undeclared identifier 'b'}}
|
|
|
|
#else
|
2014-07-25 12:40:03 +08:00
|
|
|
// e2 undefines d1's macro, which overrides c1's macro.
|
|
|
|
#include "e2.h"
|
2014-07-21 12:10:40 +08:00
|
|
|
#include "c1.h"
|
2014-07-25 12:40:03 +08:00
|
|
|
void f() { return assert(true); } // expected-error {{undeclared identifier 'assert'}}
|
2014-07-21 12:10:40 +08:00
|
|
|
#endif
|