summaryrefslogtreecommitdiff
path: root/core/host/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/host/main.c')
-rw-r--r--core/host/main.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/core/host/main.c b/core/host/main.c
new file mode 100644
index 0000000000..f370e4b561
--- /dev/null
+++ b/core/host/main.c
@@ -0,0 +1,18 @@
+/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+/* Entry point of unit test executable */
+
+#include "task.h"
+#include "timer.h"
+
+int main(void)
+{
+ timer_init();
+
+ task_start();
+
+ return 0;
+}