2015-08-09 16:48:41 +08:00
|
|
|
// RUN: rm -rf %t
|
|
|
|
// RUN: mkdir %t
|
2015-08-14 13:02:58 +08:00
|
|
|
// RUN: echo 'extern int a; template<typename T> int a2 = T::error;' > %t/a.h
|
|
|
|
// RUN: echo 'extern int b;' > %t/b.h
|
|
|
|
// RUN: echo 'extern int c = 0;' > %t/c.h
|
|
|
|
// RUN: echo 'module a { header "a.h" header "b.h" header "c.h" }' > %t/modulemap
|
|
|
|
// RUN: echo 'module other {}' > %t/other.modulemap
|
2015-08-09 16:48:41 +08:00
|
|
|
|
|
|
|
// We lazily check that the files referenced by an explicitly-specified .pcm
|
|
|
|
// file exist. Test this by removing files and ensuring that the compilation
|
|
|
|
// still succeeds.
|
|
|
|
//
|
2015-08-14 13:02:58 +08:00
|
|
|
// RUN: %clang_cc1 -fmodules -I %t -emit-module -fmodule-name=a -x c++ %t/modulemap -o %t/a.pcm \
|
|
|
|
// RUN: -fmodule-map-file=%t/other.modulemap \
|
|
|
|
// RUN: -fmodules-embed-file=%t/modulemap -fmodules-embed-file=%t/other.modulemap
|
2015-08-09 16:48:41 +08:00
|
|
|
// RUN: %clang_cc1 -fmodules -I %t -fmodule-file=%t/a.pcm %s
|
2015-08-11 08:05:21 +08:00
|
|
|
// RUN: not %clang_cc1 -fmodules -I %t -fmodule-file=%t/a.pcm %s -DERRORS 2>&1 | FileCheck %s
|
2015-08-09 16:48:41 +08:00
|
|
|
// RUN: rm %t/modulemap
|
|
|
|
// RUN: %clang_cc1 -fmodules -I %t -fmodule-file=%t/a.pcm %s
|
2015-08-11 08:05:21 +08:00
|
|
|
// RUN: not %clang_cc1 -fmodules -I %t -fmodule-file=%t/a.pcm %s -DERRORS 2>&1 | FileCheck %s
|
2015-08-14 13:02:58 +08:00
|
|
|
// RUN: rm %t/other.modulemap
|
|
|
|
// RUN: %clang_cc1 -fmodules -I %t -fmodule-file=%t/a.pcm %s
|
|
|
|
// RUN: not %clang_cc1 -fmodules -I %t -fmodule-file=%t/a.pcm %s -DERRORS 2>&1 | FileCheck %s
|
2015-08-09 16:48:41 +08:00
|
|
|
// RUN: rm %t/b.h
|
|
|
|
// RUN: %clang_cc1 -fmodules -I %t -fmodule-file=%t/a.pcm %s
|
2015-08-11 08:05:21 +08:00
|
|
|
// RUN: not %clang_cc1 -fmodules -I %t -fmodule-file=%t/a.pcm %s -DERRORS 2>&1 | FileCheck %s --check-prefix=MISSING-B
|
2015-08-09 16:48:41 +08:00
|
|
|
// RUN: rm %t/a.h
|
|
|
|
// RUN: %clang_cc1 -fmodules -I %t -fmodule-file=%t/a.pcm %s -verify
|
|
|
|
|
|
|
|
#include "a.h" // expected-error {{file not found}}
|
|
|
|
int x = b;
|
2015-08-11 08:05:21 +08:00
|
|
|
|
|
|
|
#ifdef ERRORS
|
2015-08-14 13:02:58 +08:00
|
|
|
int y = a2<int>;
|
2015-08-11 08:05:21 +08:00
|
|
|
// CHECK: In module 'a':
|
2015-08-14 13:02:58 +08:00
|
|
|
// CHECK-NEXT: a.h:1:45: error:
|
2015-08-11 08:05:21 +08:00
|
|
|
|
|
|
|
// MISSING-B: could not find file '{{.*}}b.h'
|
2015-08-11 08:32:42 +08:00
|
|
|
// MISSING-B-NOT: please delete the module cache
|
2015-08-11 08:05:21 +08:00
|
|
|
#endif
|
2015-08-14 13:02:58 +08:00
|
|
|
|
|
|
|
// RUN: not %clang_cc1 -fmodules -I %t -emit-module -fmodule-name=a -x c++ /dev/null -o %t/a.pcm \
|
|
|
|
// RUN: -fmodules-embed-file=%t/does-not-exist 2>&1 | FileCheck %s --check-prefix=MISSING-EMBED
|
|
|
|
// MISSING-EMBED: fatal error: file '{{.*}}does-not-exist' specified by '-fmodules-embed-file=' not found
|