diff options
author | astokes <astokes@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2010-03-31 19:26:42 +0000 |
---|---|---|
committer | astokes <astokes@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2010-03-31 19:26:42 +0000 |
commit | 8681288aace77dadd3dcd7495c1326eaa1a68c9b (patch) | |
tree | d4583c2e9e1b49615ed8b1d5bade47a67d6b4418 /testsuite/config | |
parent | 612e8440fec2a0fd46f7da8a4028c13a35e56f20 (diff) | |
download | sos-8681288aace77dadd3dcd7495c1326eaa1a68c9b.tar.gz |
dejagnu tests
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@903 ef72aa8b-4018-0410-8976-d6e080ef94d8
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 |