aboutsummaryrefslogtreecommitdiff
path: root/tests/hello-world/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/hello-world/init.c')
-rw-r--r--tests/hello-world/init.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/hello-world/init.c b/tests/hello-world/init.c
new file mode 100644
index 0000000..fc882ec
--- /dev/null
+++ b/tests/hello-world/init.c
@@ -0,0 +1,14 @@
+#include <common/test.h>
+
+START(pid, tid, d0, d1, d2, d3)
+{
+ UNUSED(pid);
+ UNUSED(tid);
+ UNUSED(d0);
+ UNUSED(d1);
+ UNUSED(d2);
+ UNUSED(d3);
+
+ printf("Hello, world!\n");
+ ok();
+}