Files
clang-p2996/lldb/test/functionalities/rerun/main.cpp
Greg Clayton 40ca211071 Add a test to make sure if you do:
% lldb /bin/echo
(lldb) r 1 2 3
(lldb) r 

You get "1", "2", and "3" as arguments in the next re-run when no args are specified. This is behavior we do to match what GDB did and we need to test that we don't regress on it.

<rdar://problem/20300941>

llvm-svn: 233236
2015-03-26 00:27:46 +00:00

6 lines
72 B
C++

int
main (int argc, char const **argv)
{
return 0; // break here
}