Add a test/source-manager directory for testing lldb core component SourceManager.
Initial test case test_modify_source_file_while_debugging() in TestSourceManager.py
tests the caching mechanism of the source manager.
llvm-svn: 121389
diff --git a/lldb/test/source-manager/main.c b/lldb/test/source-manager/main.c
new file mode 100644
index 0000000..9f62166
--- /dev/null
+++ b/lldb/test/source-manager/main.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main(int argc, char const *argv[]) {
+ printf("Hello world.\n"); // Set break point at this line.
+ return 0;
+}