[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / fatal-module-loader-error.m
blob6e6131e00010159b301923e0bf14afbf41fac8a2
1 // RUN: rm -rf %t
2 // RUN: mkdir %t
3 // RUN: touch %t/Module.pcm
4 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t %s -fdisable-module-hash -F %S/Inputs -verify
5 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t %s -fdisable-module-hash -F %S/Inputs -DIMPLICIT -verify
7 // This tests that after a fatal module loader error, we do not continue parsing.
9 #ifdef IMPLICIT
11 // expected-error@+1{{Module.pcm' is not a valid precompiled module file}}
12 #import <Module/Module.h>
13 #pragma clang __debug crash;
15 #else
17 // expected-error@+1{{Module.pcm' is not a valid precompiled module file}}
18 @import Module;
19 #pragma clang __debug crash;
21 #endif
23 // Also check that libclang does not create a PCH with such an error.
24 // RUN: not c-index-test -write-pch %t.pch -fmodules -fimplicit-module-maps -fmodules-cache-path=%t \
25 // RUN: %s -Xclang -fdisable-module-hash -F %S/Inputs 2>&1 | FileCheck %s
26 // CHECK: {{^}}Failure: AST deserialization error occurred{{$}}