Expressions can take arbitrary amounts of time to run, so IDEs might want to be informed about the fact that an expression is currently being executed. rdar://141253078
9 lines
235 B
Plaintext
9 lines
235 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 ver…"}}
|