Files
clang-p2996/lldb/test/API/functionalities/target-new-solib-notifications/main.cpp
Dmitry Vasilyev 3e39328b62 [lldb] Fix TestModuleLoadedNotifys API test to work correctly on most of Linux targets (#94672)
The different build configuration and target Linux system can load a
different number of .so libraries. Add and check own libraries.
2024-06-10 18:51:47 +04:00

17 lines
283 B
C++

#include <stdio.h>
extern "C" int a_function();
extern "C" int c_function();
extern "C" int b_function();
extern "C" int d_function();
int main() {
a_function();
b_function();
c_function();
d_function();
puts("running"); // breakpoint here
return 0;
}