Update test and dev requirement

This commit is contained in:
Aoran Zeng 2023-08-30 10:59:27 +08:00
parent c7d8f88eb4
commit 1af0bbcfba
2 changed files with 6 additions and 2 deletions

View File

@ -61,6 +61,8 @@ chsrc anaconda
## 开发 ## 开发
请确保拥有一个支持C99的C编译器。
```bash ```bash
make make
make test make test

View File

@ -19,7 +19,9 @@ main (int argc, char const *argv[])
puts(xy_strjoin("中文输出", "test")); puts(xy_strjoin("中文输出", "test"));
puts(xy_strjoin("中文输出2", "test")); puts(xy_strjoin("中文输出2", "test"));
xy_success("成功输出"); xy_success("成功:输出成功内容");
xy_warn("警告输出"); xy_info("信息: 输出信息内容");
xy_warn("警告:输出警告内容");
xy_error("错误:输出错误内容");
return 0; return 0;
} }