测试代码并保存结果
编写测试代码test.c
#include <stdlib.h>
int main(int argc,char **argv)
{
int time = atoi(argv[1]);
int i = 0;
for(i=0;i<time;i++){
system("./##测试的代码##");
}
}
使用该代码来运行待测试代码(10次),将结果追加到test.ret.txt
文件,&
让文件在后台运行。
./a.out 10 >>test.ret.txt &
- 编写shell脚本
test.sh
#!/bin/bash | #!/bin/sh
for i in {1..10} #for i in $(seq 1 10)
do
./a.out >>test.ret.txt
done
执行10次待测试代码,将结果存放在test.ret.txt
文件中
结果可在保存的文件中查看