Files
llvm-project/lldb/test/Shell/Expr/TestExecProgress.test
Jonas Devlieghere 1f5126dae1 [lldb] Don't trim expression in progress event (#174609)
Trimming the content of the progress event is the responsibility of the
consumer, not the producer. For example, when using the statusline,
there's plenty of space to show longer expressions.

rdar://166879951
2026-01-06 13:57:01 -06:00

9 lines
247 B
Plaintext

# RUN: %lldb -s %s | FileCheck %s
log enable lldb event
expr 1
expr 1 // And a very long comment.
quit
# CHECK: {{title = "Running expression", details = "1"}}
# CHECK: {{title = "Running expression", details = "1 // And a very long comment."}}