2014-10-22 10:05:46 +08:00
|
|
|
// RUN: rm -rf %t
|
|
|
|
|
|
|
|
// -------------------------------
|
|
|
|
// Build chained modules A, B, and C
|
2014-10-28 07:01:16 +08:00
|
|
|
// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -fmodule-name=a -emit-module %S/Inputs/explicit-build/module.modulemap -o %t/a.pcm \
|
|
|
|
// RUN: 2>&1 | FileCheck --check-prefix=CHECK-NO-IMPLICIT-BUILD %s --allow-empty
|
|
|
|
//
|
2014-10-28 07:01:16 +08:00
|
|
|
// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -fmodule-file=%t/a.pcm \
|
|
|
|
// RUN: -fmodule-name=b -emit-module %S/Inputs/explicit-build/module.modulemap -o %t/b.pcm \
|
|
|
|
// RUN: 2>&1 | FileCheck --check-prefix=CHECK-NO-IMPLICIT-BUILD %s --allow-empty
|
|
|
|
//
|
2014-10-28 07:01:16 +08:00
|
|
|
// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -fmodule-file=%t/b.pcm \
|
|
|
|
// RUN: -fmodule-name=c -emit-module %S/Inputs/explicit-build/module.modulemap -o %t/c.pcm \
|
|
|
|
// RUN: 2>&1 | FileCheck --check-prefix=CHECK-NO-IMPLICIT-BUILD %s --allow-empty
|
|
|
|
//
|
|
|
|
// CHECK-NO-IMPLICIT-BUILD-NOT: building module
|
|
|
|
|
|
|
|
// -------------------------------
|
|
|
|
// Build B with an implicit build of A
|
2014-10-28 07:01:16 +08:00
|
|
|
// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -fmodule-name=b -emit-module %S/Inputs/explicit-build/module.modulemap -o %t/b-not-a.pcm \
|
|
|
|
// RUN: 2>&1 | FileCheck --check-prefix=CHECK-B-NO-A %s
|
|
|
|
//
|
|
|
|
// CHECK-B-NO-A: While building module 'b':
|
|
|
|
// CHECK-B-NO-A: building module 'a' as
|
|
|
|
|
|
|
|
// -------------------------------
|
|
|
|
// Check that we can use the explicitly-built A, B, and C modules.
|
2014-10-28 07:01:16 +08:00
|
|
|
// 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 \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -fmodule-file=%t/a.pcm \
|
|
|
|
// RUN: -verify %s -DHAVE_A
|
|
|
|
//
|
2014-10-28 07:01:16 +08:00
|
|
|
// 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 \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -fmodule-map-file=%S/Inputs/explicit-build/module.modulemap \
|
2014-10-28 07:01:16 +08:00
|
|
|
// RUN: -fmodule-file=%t/a.pcm \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -verify %s -DHAVE_A
|
|
|
|
//
|
2014-10-28 07:01:16 +08:00
|
|
|
// 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 \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -fmodule-file=%t/b.pcm \
|
|
|
|
// RUN: -verify %s -DHAVE_A -DHAVE_B
|
|
|
|
//
|
2014-10-28 07:01:16 +08:00
|
|
|
// 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 \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -fmodule-file=%t/a.pcm \
|
|
|
|
// RUN: -fmodule-file=%t/b.pcm \
|
|
|
|
// RUN: -verify %s -DHAVE_A -DHAVE_B
|
|
|
|
//
|
2014-10-28 07:01:16 +08:00
|
|
|
// 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 \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -fmodule-file=%t/a.pcm \
|
|
|
|
// RUN: -fmodule-file=%t/b.pcm \
|
|
|
|
// RUN: -fmodule-file=%t/c.pcm \
|
|
|
|
// RUN: -verify %s -DHAVE_A -DHAVE_B -DHAVE_C
|
|
|
|
//
|
2014-10-28 07:01:16 +08:00
|
|
|
// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -I%S/Inputs/explicit-build \
|
|
|
|
// RUN: -fmodule-file=%t/a.pcm \
|
|
|
|
// RUN: -fmodule-file=%t/c.pcm \
|
2014-10-28 07:01:16 +08:00
|
|
|
// RUN: -verify %s -DHAVE_A -DHAVE_B -DHAVE_C
|
2014-10-22 10:05:46 +08:00
|
|
|
|
2014-10-28 07:01:16 +08:00
|
|
|
#if HAVE_A
|
2014-10-22 10:05:46 +08:00
|
|
|
#include "a.h"
|
|
|
|
static_assert(a == 1, "");
|
2014-10-28 07:01:16 +08:00
|
|
|
#else
|
|
|
|
const int use_a = a; // expected-error {{undeclared identifier}}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAVE_B
|
|
|
|
#include "b.h"
|
2014-10-22 10:05:46 +08:00
|
|
|
static_assert(b == 2, "");
|
|
|
|
#else
|
2014-10-28 07:01:16 +08:00
|
|
|
const int use_b = b; // expected-error {{undeclared identifier}}
|
|
|
|
#endif
|
2014-10-22 10:05:46 +08:00
|
|
|
|
2014-10-28 07:01:16 +08:00
|
|
|
#if HAVE_C
|
|
|
|
#include "c.h"
|
|
|
|
static_assert(c == 3, "");
|
|
|
|
#else
|
|
|
|
const int use_c = c; // expected-error {{undeclared identifier}}
|
|
|
|
#endif
|
2014-10-22 10:05:46 +08:00
|
|
|
|
2014-10-28 07:01:16 +08:00
|
|
|
#if HAVE_A && HAVE_B && HAVE_C
|
|
|
|
// expected-no-diagnostics
|
2014-10-22 10:05:46 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// -------------------------------
|
|
|
|
// Check that we can use a mixture of implicit and explicit modules.
|
2014-10-28 07:01:16 +08:00
|
|
|
// 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 \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -fmodule-file=%t/b-not-a.pcm \
|
2014-10-28 07:01:16 +08:00
|
|
|
// RUN: -verify %s -DHAVE_A -DHAVE_B
|
2014-10-22 10:05:46 +08:00
|
|
|
|
|
|
|
// -------------------------------
|
2014-10-28 07:01:16 +08:00
|
|
|
// Try to use two different flavors of the 'a' module.
|
|
|
|
// RUN: not %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -fmodule-file=%t/a.pcm \
|
|
|
|
// RUN: -fmodule-file=%t/b-not-a.pcm \
|
2014-10-28 07:01:16 +08:00
|
|
|
// RUN: %s 2>&1 | FileCheck --check-prefix=CHECK-MULTIPLE-AS %s
|
2014-10-22 10:05:46 +08:00
|
|
|
//
|
2014-10-28 07:01:16 +08:00
|
|
|
// RUN: not %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -fmodule-file=%t/a.pcm \
|
|
|
|
// RUN: -fmodule-file=%t/b-not-a.pcm \
|
|
|
|
// RUN: -fmodule-map-file=%S/Inputs/explicit-build/module.modulemap \
|
2014-10-28 07:01:16 +08:00
|
|
|
// RUN: %s 2>&1 | FileCheck --check-prefix=CHECK-MULTIPLE-AS %s
|
2014-10-22 10:05:46 +08:00
|
|
|
//
|
2014-10-28 07:01:16 +08:00
|
|
|
// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -fmodule-name=a -emit-module %S/Inputs/explicit-build/module.modulemap -o %t/a-alt.pcm \
|
|
|
|
// RUN: 2>&1 | FileCheck --check-prefix=CHECK-NO-IMPLICIT-BUILD %s --allow-empty
|
|
|
|
//
|
2014-10-28 07:01:16 +08:00
|
|
|
// RUN: not %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -fmodule-file=%t/a.pcm \
|
|
|
|
// RUN: -fmodule-file=%t/a-alt.pcm \
|
|
|
|
// RUN: -fmodule-map-file=%S/Inputs/explicit-build/module.modulemap \
|
|
|
|
// RUN: %s 2>&1 | FileCheck --check-prefix=CHECK-MULTIPLE-AS %s
|
|
|
|
//
|
2014-10-28 07:01:16 +08:00
|
|
|
// RUN: not %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -fmodule-file=%t/a-alt.pcm \
|
|
|
|
// RUN: -fmodule-file=%t/a.pcm \
|
|
|
|
// RUN: -fmodule-map-file=%S/Inputs/explicit-build/module.modulemap \
|
|
|
|
// RUN: %s 2>&1 | FileCheck --check-prefix=CHECK-MULTIPLE-AS %s
|
|
|
|
//
|
2014-10-28 19:34:29 +08:00
|
|
|
// CHECK-MULTIPLE-AS: error: module 'a' is defined in both '{{.*}}/a{{.*}}.pcm' and '{{.*[/\\]}}a{{.*}}.pcm'
|
2014-10-22 10:05:46 +08:00
|
|
|
|
|
|
|
// -------------------------------
|
|
|
|
// Try to import a PCH with -fmodule-file=
|
2014-10-28 07:01:16 +08:00
|
|
|
// RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -fmodule-name=a -emit-pch %S/Inputs/explicit-build/a.h -o %t/a.pch \
|
|
|
|
// RUN: 2>&1 | FileCheck --check-prefix=CHECK-NO-IMPLICIT-BUILD %s --allow-empty
|
|
|
|
//
|
2014-10-28 07:01:16 +08:00
|
|
|
// RUN: not %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \
|
2014-10-22 10:05:46 +08:00
|
|
|
// RUN: -fmodule-file=%t/a.pch \
|
|
|
|
// RUN: %s 2>&1 | FileCheck --check-prefix=CHECK-A-AS-PCH %s
|
|
|
|
//
|
|
|
|
// CHECK-A-AS-PCH: fatal error: AST file '{{.*}}a.pch' was not built as a module
|
2014-10-28 07:01:16 +08:00
|
|
|
|
|
|
|
// -------------------------------
|
|
|
|
// Try to import a non-AST file with -fmodule-file=
|
|
|
|
//
|
|
|
|
// RUN: touch %t/not.pcm
|
|
|
|
//
|
|
|
|
// RUN: not %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \
|
|
|
|
// RUN: -fmodule-file=%t/not.pcm \
|
|
|
|
// RUN: %s 2>&1 | FileCheck --check-prefix=CHECK-BAD-FILE %s
|
|
|
|
//
|
|
|
|
// RUN: not %clang_cc1 -x c++ -std=c++11 -fmodules -fmodules-cache-path=%t -Rmodule-build -fno-modules-error-recovery \
|
|
|
|
// RUN: -fmodule-file=%t/nonexistent.pcm \
|
|
|
|
// RUN: %s 2>&1 | FileCheck --check-prefix=CHECK-BAD-FILE %s
|
|
|
|
//
|
|
|
|
// CHECK-BAD-FILE: fatal error: file '{{.*}}t.pcm' is not a precompiled module file
|