381622677 发表于 2015-8-12 15:15:35

loadrunner 参数赋值问题

#include "lrs.h"

Action()
{       
       
int x;
x=10;
lr_save_string(x,"param");
lr_eval_string("<param>");
               
}
请教下,如何才能给参数赋值,变量!,以上为百度搜索,运行出错,谢谢。
Action.c (10): type error in argument 1 to `lr_save_string'; found `int' expected `pointer to const char'
         1 errors, not writing pre_cci.ci

smile3232 发表于 2015-8-12 15:36:40

写错了吧

smile3232 发表于 2015-8-12 15:40:32

你没看别人提示你的信息,你把一个整型变量赋值给一个字符串
页: [1]
查看完整版本: loadrunner 参数赋值问题