summaryrefslogtreecommitdiff
path: root/test/run-tests.c
diff options
context:
space:
mode:
authorP. F. Chimento <philip.chimento@gmail.com>2013-04-17 08:24:55 -0700
committerP. F. Chimento <philip.chimento@gmail.com>2013-04-17 08:24:55 -0700
commit5fd320085624acecbacb29e86f8f32b8702cc3e6 (patch)
treecc88c29eb7b77f06734fc383912fde0f575894b3 /test/run-tests.c
parent5299f7acf85200a46679334a6bd230d4e2101b7f (diff)
parent7fc4090461ad888612491814e5a44aaf7e52d7ff (diff)
Merge pull request #3 from ptomato/issues/1-build-system
Build system
Diffstat (limited to 'test/run-tests.c')
-rw-r--r--test/run-tests.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/run-tests.c b/test/run-tests.c
new file mode 100644
index 0000000..ba016bc
--- /dev/null
+++ b/test/run-tests.c
@@ -0,0 +1,18 @@
+/* Copyright 2013 Endless Mobile, Inc. */
+
+#include <glib-object.h>
+#include <glib.h>
+
+#include "run-tests.h"
+
+int
+main (int argc,
+ char **argv)
+{
+ g_test_init (&argc, &argv, NULL);
+
+ add_init_tests ();
+ add_hello_tests ();
+
+ return g_test_run ();
+}