LR的一个输出状态信息的函数

来源:互联网 发布:腾讯代理吃鸡会优化么 编辑:程序博客网 时间:2024/06/05 02:45

LR的一个输出状态信息的函数:

int lr_vuser_status_message (const char * format);


帮助中的相关说明:

The lr_vuser_status_message function sends a string to the Status area of the Controller or Tuning Module Console's Vuser window. It also sends this string to the Vuser log. When run from VuGen, the message is sent to output.txt.

 

每个用户运行的时候,你看递增了多少次就知道了跑了多久:

i=1;    //放在初始化里面

i=i+1;
lr_vuser_status_message("运行了%d次",i);

原创粉丝点击