summaryrefslogtreecommitdiff
path: root/test/test.c
diff options
context:
space:
mode:
author李佳 <[email protected]>2019-07-09 13:13:45 +0800
committer李佳 <[email protected]>2019-07-09 13:13:45 +0800
commite7a53ff8b90e30fbd700ae29cc4947ea0257b788 (patch)
tree9d4eeb42c7208a2db67d5547c32534254feca00f /test/test.c
parentcdf19e44025cb75b57d8b551f6b040201c1a79c3 (diff)
parent906233f67e243953a9b84cb4dff93919fbbf0811 (diff)
Merge branch 'master' into 'master'HEADmaster
Master See merge request Alpha_lib/hello_ci_world!1
Diffstat (limited to 'test/test.c')
-rw-r--r--test/test.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/test.c b/test/test.c
new file mode 100644
index 0000000..5812bcd
--- /dev/null
+++ b/test/test.c
@@ -0,0 +1,15 @@
+#include <stdio.h>
+
+#define SUCC 0
+#define ERROR -1
+
+extern int hello_ci_world(void);
+
+int main(void)
+{
+ printf("libhello_ci_world test starting...\n");
+ hello_ci_world();
+
+ //return SUCC;
+ return ERROR;
+}