summaryrefslogtreecommitdiff
path: root/test/main/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/main/main.cpp')
-rw-r--r--test/main/main.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/main/main.cpp b/test/main/main.cpp
new file mode 100644
index 00000000..06e733c4
--- /dev/null
+++ b/test/main/main.cpp
@@ -0,0 +1,17 @@
+#include <stdio.h>
+#include <string.h>
+
+static void print_banner(const char* text);
+
+extern "C" {
+ void app_main(void)
+ {
+ print_banner("Running tests without [ignore] tag");
+ }
+}
+
+static void print_banner(const char* text)
+{
+ printf("\n#### %s #####\n\n", text);
+}
+