Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/data/launch/src/SpecialTestApp.cc')
-rw-r--r--dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/data/launch/src/SpecialTestApp.cc15
1 files changed, 15 insertions, 0 deletions
diff --git a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/data/launch/src/SpecialTestApp.cc b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/data/launch/src/SpecialTestApp.cc
new file mode 100644
index 00000000000..2dbebd91c9c
--- /dev/null
+++ b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/data/launch/src/SpecialTestApp.cc
@@ -0,0 +1,15 @@
+#include <stdio.h>
+
+int main() {
+ printf("Running SpecialTestApp\n");
+
+ const char *path = "/tmp/dsftest.txt";
+ const char *mode = "a";
+ FILE* fd = fopen(path, mode);
+ fprintf(fd, "Running SpecialTestApp\n");
+ fclose(fd);
+
+
+ return 0;
+}
+

Back to the top