vote up 0 vote down star
1

We have a test system (Linux) that is running a FitNesse server. The test on one of the FitNesse scripts is to ssh into an embedded Linux platform and execute a program:

ssh -t -t root@192.168.1.100 myProg

myProg then is supposed to open a connection to an already-running program on the 192.168.1.100 machine via a unix domain socket.

No matter what we try, myProg never seems to achieve contact through the socket.

If we try things from the command line:

ssh root@192.168.1.100

[root@192.168.1.100] myProg

everything works correctly.

The fixture that we're using is the CommandLineFixture. The full FitNesse line we're using:

| command | ssh -t -t root@192.168.1.100 myProg | testOutput |

The domain socket is in /tmp and has wide open permissions.

Does anyone have any ideas / pointers suggestions as to what might be (not) happening?

EDIT

Removed previous edit. It was showing the wrong thing.

flag

1  
No idea why it won't work. But I'd run the application under strace and see what fails. ssh -t -t root@192.168.1.100 strace -f myProg – nos Jul 22 at 0:36
Thanks, I'll try it. – Peter K. Jul 22 at 1:10

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.