teak-llvm/lldb/packages/Python/lldbsuite/test/commands/gui/basic/main.c
Raphael Isemann 254150982b [lldb][NFC] Add basic test for GUI command
Summary:
This adds a basic test for the GUI command. Just tests that it starts up, that we can quit the gui
and help window, and that the basic UI elements are rendered. Mostly testing the waters how
testing this command will do on the bots or if that will cause some serious issues when we do
fancy ncurses stuff.

Reviewers: labath, clayborg

Reviewed By: labath

Subscribers: JDevlieghere, lldb-commits

Tags: #lldb

Differential Revision: https://reviews.llvm.org/D67018

llvm-svn: 370625
2019-09-02 08:00:59 +00:00

5 lines
113 B
C

int main(int argc, char **argv) {
int funky_var_name_that_should_be_rendered = 22;
return 0; // Break here
}