TA的每日心情 | 开心 2016-4-19 10:47 |
---|
签到天数: 2 天 连续签到: 1 天 [LV.1]测试小兵
|
你好,我是性能测试新手,技术问题想求助,Loadrunner跑的脚本如下,可是出来的结果却达不到预想值,并且平均事物响应时间中出现了4个值:1;ActionTransaction;Vuser end Transaction;Vuser init Transaction。想问一下我是应该取平均值还是只取1或者Action Transaction呀。
Action()
{
int i = 0;
char URL_URL[1024];
int z,x,y;
int i_rand;
srand((unsigned int)time(NULL));
i_rand = rand();
lr_rendezvous("123456");
lr_start_transaction("1");
for(i = 0; i < 10; i++)
{
z = 16;
x = i_rand %(55305-54753)+54753+i;
y = i_rand %(26786-24856)+24856;
sprintf(URL_URL, "URL=http://190.0.0.36/v1/rastertiles/sea_map/%d/%d/%d.png", z, x, y);
web_url("loadtile",
URL_URL,
"Resource=1",
"RecContentType=application/png",
"Referer=",
"Snapshot=t1.inf",
LAST);
}
lr_end_transaction("1", LR_AUTO);
return 0;
} |
|