test(simple): 重构测试文件结构并添加新的测试用例

将原有的测试文件移动到专门的返回值测试目录(return_val_cases)中,
同时添加了标准输出测试目录(stdout_val_cases),新增了参数传递测试用例
和标准输出测试用例,使测试结构更加清晰和模块化。
This commit is contained in:
zzy
2026-04-13 11:40:23 +08:00
parent ffb23afaf4
commit 8054f20375
22 changed files with 33 additions and 22 deletions

View File

@@ -0,0 +1,6 @@
#include "stdio.h"
int main(void) {
puts("hello world");
return 0;
}

View File

@@ -0,0 +1,7 @@
#ifndef __SCC_STDIO_H__
#define __SCC_STDIO_H__
extern int puts(const char *str);
extern char *gets(char *buff);
#endif