llvm-project/lldb/test/Shell/Expr/TestClangModuleLoadError_InvalidNestedSubmodule.test
Michael Buch 7f55f264ec
[lldb][ClangModulesDeclVendor] Revamp error handling when loading Clang modules (#166917)
Instead of propagating the errors as a `bool`+`Stream` we change the
`ClangModulesDeclVendor` module loading APIs to use `llvm::Error`. We
also reword some of the diagnostics (notably removing the hardcoded
`error:` prefix). A follow-up patch will further make the module loading
errors less noisy.

See the new tests for what the errors look like.

rdar://164002569
2025-11-07 22:48:48 +00:00

60 lines
1.3 KiB
Plaintext

## Tests the case where we fail to load a submodule of a submodule. We force this
## by removing the submodule 'module qux' of 'module baz' from the modulemap.
#
# REQUIRES: system-darwin
#
# RUN: split-file %s %t/sources
# RUN: %clang_host -g %t/sources/main.m -fmodules -fcxx-modules \
# RUN: -fmodule-map-file=%t/sources/module.modulemap \
# RUN: -fmodules-cache-path=%t/ModuleCache -o %t.out
# RUN: sed -i '' -e 's/module qux/module quz/' %t/sources/module.modulemap
#
# RUN: %lldb -x -o "settings set interpreter.stop-command-source-on-error false" \
# RUN: -s %t/sources/commands.input %t.out -o exit 2>&1 | FileCheck %s
#--- main.m
@import foo.baz.qux;
@import bar;
int main() { __builtin_debugtrap(); }
#--- foo.h
struct foo {};
#--- bar.h
struct bar {};
#--- baz.h
struct baz {};
#--- qux.h
struct qux {};
#--- module.modulemap
module foo {
header "foo.h"
export *
module baz {
header "baz.h"
export *
module qux {
header "qux.h"
export *
}
}
}
module bar {
header "bar.h"
export *
}
#--- commands.input
run
## Make sure expression fails so the 'note' diagnostics get printed.
expr blah
# CHECK: note: couldn't load submodule 'qux' of module 'foo.baz'