diff options
| author | 李佳 <[email protected]> | 2019-07-09 13:13:45 +0800 |
|---|---|---|
| committer | 李佳 <[email protected]> | 2019-07-09 13:13:45 +0800 |
| commit | e7a53ff8b90e30fbd700ae29cc4947ea0257b788 (patch) | |
| tree | 9d4eeb42c7208a2db67d5547c32534254feca00f /test | |
| parent | cdf19e44025cb75b57d8b551f6b040201c1a79c3 (diff) | |
| parent | 906233f67e243953a9b84cb4dff93919fbbf0811 (diff) | |
Master
See merge request Alpha_lib/hello_ci_world!1
Diffstat (limited to 'test')
| -rw-r--r-- | test/test.c | 15 |
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; +} |
