teak-llvm/lldb/packages/Python/lldbsuite/test/functionalities/memory-region/main.cpp
Raphael Isemann 10fb677285 Add a basic test for 'memory region'
Summary:
The 'memory region' command is at the moment not tested at all by our test suite.
This patch just adds a basic test that at least provides some basic testing.

Reviewers: #lldb, davide

Reviewed By: #lldb, davide

Subscribers: vsk, davide, lldb-commits

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

llvm-svn: 342042
2018-09-12 10:04:25 +00:00

7 lines
172 B
C++

#include <iostream>
int main (int argc, char const **argv) {
std::cout << "Program with sections" << std::endl;
return 0; // Run here before printing memory regions
}