[Lldb-commits] [lldb] fc22b58 - [lldb][test] TestExprLanguageNote.test: fix test on Windows
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Mon Oct 13 10:18:50 PDT 2025
Author: Michael Buch
Date: 2025-10-13T18:18:32+01:00
New Revision: fc22b58c25963ece6b041cadbdc931c2338955e4
URL: https://github.com/llvm/llvm-project/commit/fc22b58c25963ece6b041cadbdc931c2338955e4
DIFF: https://github.com/llvm/llvm-project/commit/fc22b58c25963ece6b041cadbdc931c2338955e4.diff
LOG: [lldb][test] TestExprLanguageNote.test: fix test on Windows
This still fails on Windows because the default language for the C++
frame is not the same as on Unix.
Also remove the LLD requirement, since we're not relying on DWARF here.
Added:
Modified:
lldb/test/Shell/Expr/TestExprLanguageNote.test
Removed:
################################################################################
diff --git a/lldb/test/Shell/Expr/TestExprLanguageNote.test b/lldb/test/Shell/Expr/TestExprLanguageNote.test
index 7d8c7025d7f7a..e8e4e1399e451 100644
--- a/lldb/test/Shell/Expr/TestExprLanguageNote.test
+++ b/lldb/test/Shell/Expr/TestExprLanguageNote.test
@@ -1,5 +1,3 @@
-# REQUIRES: (system-windows && lld) || !system-windows
-
# RUN: split-file %s %t
# RUN: %clang_host -g %t/main.cpp -o %t.out
#
@@ -29,7 +27,7 @@ run
expr blah
# CHECK-TARGET: (lldb) expr
-# CHECK-TARGET: note: Ran expression as 'C++{{.*}}'
+# CHECK-TARGET: note: Ran expression as '{{(ISO )?}}C++{{.*}}'
expr -l objc -- blah
More information about the lldb-commits
mailing list