Files
clang-p2996/lldb/test/Shell/SymbolFile/PDB/Inputs/ExpressionsTest0.script
Dave Lee d875838e8b [lldb][test] Replace use of p with expression in Shell tests (NFC)
In Shell tests, replace use of the `p` alias with the `expression` command.

To avoid conflating tests of the alias with tests of the expression command,
this patch canonicalizes to the use `expression`.

See also D141539 which made the same change to API tests.

Differential Revision: https://reviews.llvm.org/D146230
2023-03-17 10:29:24 -07:00

8 lines
248 B
Plaintext

breakpoint set --file ExpressionsTest.cpp --line 19
run
expression result
expression N0::N1::sum(N0::N1::buf1, sizeof(N0::N1::buf1))
expression N1::sum(N1::buf1, sizeof(N1::buf1))
expression sum(buf1, sizeof(buf1))
expression sum(buf1, 1000000000)