Welcome to the new Parasoft forums! We hope you will enjoy the site and try out some of the new features, like sharing an idea you may have for one of our products or following a category.
Insra redirection to another machine
LegacyForum
Posts: 1,664 ✭✭
We are using insure-compiled binaries on various embedded products (real target x86 machines and simulated targets using User-Mode Linux). Insure works fine using stdout or a file as argument to insure++.reportfile. The target machines does not have any xserver, so its not possible to run insra on the target.
Is it possible to instead redirect the output from the program(s) to send the messages to insra running on another host? I found the option insra.port, but no insra.host.
Is it possible to instead redirect the output from the program(s) to send the messages to insra running on another host? I found the option insra.port, but no insra.host.
0
Comments
-
You can accomplish this using an environment variable.
Essentially what you want to do is start up insra on the machine you want the information to go to
insra &
in the insra title bar it will give you the host name and the port number it is listening on. Let's say it
MachineA:3275
so on the machine you want to run your insure built application you would do
something like
env INSRA_PORT=MachineA:3275 ./a.out
and it should send the output to MachineA's insra gui0