diff options
Diffstat (limited to 'testsuite/config')
-rw-r--r-- | testsuite/config/unix.exp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/config/unix.exp b/testsuite/config/unix.exp new file mode 100644 index 00000000..db3331e1 --- /dev/null +++ b/testsuite/config/unix.exp @@ -0,0 +1,11 @@ +proc sos_start {} { + global SOS + + send_user "starting $SOS" + spawn $SOS + expect { + -re ".*root.*" { perror "Can't start $SOS"; exit 1 } + } +} + +sos_start |