xref: /llvm-project/lldb/test/Shell/Driver/TestEmptyArgument.test (revision ca8faf8f465962e5c39d145a0e2236648cbcc27d)
1# RUN: %clang_host %S/Inputs/dumpargs.c -o %t.out
2# RUN: %lldb -b -o "r" %t.out -- "one" "two" "" "three" | FileCheck %s
3
4# CHECK: argv[1] = "one"
5# CHECK: argv[2] = "two"
6# CHECK: argv[3] = ""
7# CHECK: argv[4] = "three"
8