Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: automating loadrunner start

by almut (Canon)
on Apr 22, 2009 at 20:52 UTC ( [id://759400]=note: print w/replies, xml ) Need Help??


in reply to automating loadrunner start

Maybe you could start to debug this by printing out a bit more info, e.g.

system(@argv)==0 or die "Failed to execute Loadrunner (ret=$?): $^E";

(If I'm understanding you correctly, "I get a failed to start loadrunner message" is referring to this error message...(?))

Replies are listed 'Best First'.
Re^2: automating loadrunner start
by grashoper (Monk) on Apr 22, 2009 at 21:03 UTC
    I get this error failed to start loadrunner the system cannot find the file specified in gui.pl line 4 ret=256. I changed as follows and now I get a -1 (doesnt that mean its already running?)
    use Win32::GuiTest qw(WaitWindow FindWindowLike SetForegroundWindow Se +ndKeys); use strict; my @argv=("E:\\MIBOR_TimingTest\\MIBOR\\MIBOR.usr"); system(my @argv)==0 or die "Failed to execute Loadrunner (ret=$?): $^E +"; #sleep 600; my @whnds=FindWindowLike( undef,"^Mercury Virtual User Generator"); if (!@whnds){ die "Cannot find window with title/caption Mercury"; } else{ printf("Window handle of Mercury is %x\n", $whnds[0]); } SetForegroundWindow($whnds[0]); SendKeys("{F5}");
      my @argv=("E:\\MIBOR_TimingTest\\MIBOR\\MIBOR.usr"); system(my @argv)==0 or die "Failed to execute Loadrunner (ret=$?): $^E +";
      No, you do not want that second "my".
        oh right you are, that makes it a completely seperate variable doesn't it?
      cannot find the file specified in gui.pl line 4 ret=256

      $? being 256 simply means the program exited with a return code of 1 (i.e. $? >> 8) — see system for the details.

      Whatever that means... hopefully you can find more about the circumstances under which this happens in the LoadRunner docs.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://759400]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (3)
As of 2024-04-26 06:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found