summaryrefslogtreecommitdiff
path: root/lldb/test/Shell/Driver/TestEmptyArgument.test
blob: ff327bdd38d01ebe7889688271dd474d69d6c93c (plain)
1
2
3
4
5
6
7
# RUN: %clang_host %S/Inputs/dumpargs.c -o %t.out
# RUN: %lldb -b -o "r" %t.out -- "one" "two" "" "three" | FileCheck %s

# CHECK: argv[1] = "one"
# CHECK: argv[2] = "two"
# CHECK: argv[3] = ""
# CHECK: argv[4] = "three"