nmap/tests/ncat-protocol-sanity-test/udpclt.exp
Serhii Turivnyi e38af10998 Add CI tests using the standard test interface
- ncat-protocol-sanity-test
 - simple-functionality-test
2017-11-29 15:17:00 +02:00

15 lines
181 B
Plaintext
Executable File

#!/usr/bin/expect
set timeout 10
spawn ncat -4 --udp localhost 6666
send -- "ClientSend\r"
expect {
eof { exit 2 }
default { exit 1 }
"ServerSend\r"
}
sleep 1
exit 0