[Lldb-commits] [lldb] [lldb] Remove .noindex suffix from test output directory for non-Darwin (PR #197237)
Dave Lee via lldb-commits
lldb-commits at lists.llvm.org
Sat May 23 13:19:11 PDT 2026
================
@@ -1,4 +1,4 @@
# This is a sanity check that verifies that the module cache path is set
# correctly and points inside the default test build directory.
RUN: %lldb -o 'settings show symbols.clang-modules-cache-path' | FileCheck %s
-CHECK: lldb-test-build.noindex{{.*}}module-cache-lldb
+CHECK: lldb-test-build{{(\.noindex)?}}{{.*}}module-cache-lldb
----------------
kastiglione wrote:
this could also be simplified
```
CHECK: lldb-test-build{{.*}}module-cache-lldb
```
https://github.com/llvm/llvm-project/pull/197237
More information about the lldb-commits
mailing list