xref: /llvm-project/lldb/test/Shell/Commands/command-script-add.test (revision 9c5877f33d9f7fd317c07920fd24a041ad69077a)
1*9c5877f3SJim Ingham# Test that command script add with no arguments prompts for
2*9c5877f3SJim Ingham# and generates the modern (exe_ctx) version of the command.
3*9c5877f3SJim Ingham
4*9c5877f3SJim Ingham# RUN: %lldb < %s | FileCheck %s
5*9c5877f3SJim Inghamcommand script add doit
6*9c5877f3SJim Inghamprint(exe_ctx.target)
7*9c5877f3SJim InghamDONE
8*9c5877f3SJim Inghamdoit
9*9c5877f3SJim Ingham# CHECK: No value
10