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.
