TA的每日心情 | 郁闷 2017-1-11 15:48 |
---|
签到天数: 1 天 连续签到: 1 天 [LV.1]测试小兵
|
要看整个循环过程中,整个脚本被执行了多少次。
一种方法是:看运行后的BLOG文件;
第二种方法:在脚本中定义一个参数,将其类型定义为:iteration number。将其值输入到某个文本文件中,运行结束后查看这个文本文件就可以知道脚本被执行了多少次了。
代码如下:
long file_stream;
char *filename = "c:\\iteration_number.txt";
/* Open the file with read access */
if ((file_stream = fopen(filename, "a")) == NULL ) {
lr_error_message("Cannot open %s", filename);
return -1;
}
/*write the file with iteration number */
fprintf(file_stream,"This is the %s iteration\n",lr_eval_string("{iteration_number}"));
fclose(file_stream); |
|