Loadrunner报错“Too many local variablesAction.c”解决方法

时间:2023-03-09 05:46:40
Loadrunner报错“Too many local variablesAction.c”解决方法

问题描述,在Action.c里定义数组时如果数组长度过长,如char a[1024*1024]运行时即会报错

意思为:太多的局部变量

问题原因及解决方法如下:

1. VuGen对于局部变量可以分配的最大内存为64K,如果想分配空间大于64K的变量的话,需要通过如下方法:

a. 将其定义为全局变量,Declare it globally.

char buffer[100000]; 

Actions() 

{ 

return 0; 

}

b. 使用malloc()来分配内存,Use malloc() to allocate the memory.

Actions() 

{ 

char *buffer = (char *) malloc(100000); 

/*Remember to free it when you do not need it*/ 

free(buffer); 

return 0; 

}

2. 如果在录制脚本后进行回放时报错,可以按照下面步骤进行配置:

If you have this problem replaying a large database script in LoadRunner 7.8 or above, immediately after recording.

a. Go to Tools -> Regenerate Vusers...

b. Click on 'Options...' to edit the recording options

c. Under General:

1. Script section, enable the option for "Split action section to functions by event".By default, this is not enabled and it has a value of "500". This option is useful for when the action section is rather large

2. Script and select "Maximum number of lines in action file", change the value to 30000 and regenerate again

问题:运行脚本报“Too many local variablese”的错误

解决方法:

脚本拆分录制

这个错误是说明ACTION里代码的变量个数超出了它规定的范围.一般好像不能超过50个.