场景运行时block错误
在Controller中运行时errors中出现错误:Error: Parameter 'FepPort': All values in unique block already used. Block size is 100. The parameter continues with last value of the range according to "When Out Of Values" policy.
我设置的场景只有一个用户运行,duration设置运行5分钟
脚本如下:
vuser_init()
{
lrs_create_socket("socket1", "TCP", "RemoteHost=172.16.100.109:8001",LrsLastArg);
lrs_send("socket1", "buf0", LrsLastArg);
lrs_receive("socket1", "buf1", LrsLastArg);
lr_think_time(8);
return 0;
}
Action()
{
lrs_send("socket1", "buf8", LrsLastArg);
lrs_receive("socket1","buf9",LrsLastArg);
return 0;
}
vuser_end()
{
lrs_close_socket("socket1");
lrs_cleanup();
return 0;
}
在脚本中我现在都取了固定值进行发送
请问为什么会出现上面提到的那个错误呢? 从表面错误文字中看,在你的参数设置中,迭代规则设置的是唯一值,这样,唯一值用完后,就会执行报错。
需要设置你的唯一值用完后的policy。“When Out Of Values" policy” 设置能,循环使用。 你这个是全部代码? 用唯一时,要保证有足够的数据
页:
[1]