diff options
Diffstat (limited to 'lldb/test/Shell/Expr/TestMultilineExpr.test')
-rw-r--r-- | lldb/test/Shell/Expr/TestMultilineExpr.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lldb/test/Shell/Expr/TestMultilineExpr.test b/lldb/test/Shell/Expr/TestMultilineExpr.test new file mode 100644 index 00000000000..ae02407b576 --- /dev/null +++ b/lldb/test/Shell/Expr/TestMultilineExpr.test @@ -0,0 +1,9 @@ +# RUN: %lldb -b -s %s | FileCheck %s + +# In terminal sessions LLDB hides input from subsequent lines so it's not visible in the output we check below. +expression +2+ +3 + +# CHECK: (lldb) expression +# CHECK: (int) {{.*}} = 5 |