Files
clang-p2996/lldb/test/API/commands/gui/basicdebug/main.c
Luboš Luňák c7be982c83 [lldb][gui] move TestGuiBasicDebug.py to lldb/test and update it
Between the time it was created and it was pushed upstream,
99451b4453 has moved the existing
gui gui tests to lldb/test, so move this one too.
And update it to contain TestGuiBasic.py changes since the time
when it was based on that test.

Differential Revision: https://reviews.llvm.org/D85106
2020-08-05 09:51:13 +02:00

8 lines
112 B
C

extern int func();
int main(int argc, char **argv) {
func(); // Break here
func(); // Second
return 0;
}