Blame tests/p_httpd/httpd_servehtml.sh
|
Karanbir Singh |
0b5bb2 |
#!/bin/sh
|
|
Karanbir Singh |
0b5bb2 |
# Author: Athmane Madjoudj <athmanem@gmail.com>
|
|
Karanbir Singh |
0b5bb2 |
|
|
Karanbir Singh |
0b5bb2 |
echo -n "HTTPD serve html page test: "
|
|
Karanbir Singh |
0b5bb2 |
echo -e "GET / HTTP/1.0\r\n" | nc localhost 80 | grep 'Test Page' > /dev/null 2>&1
|
|
Karanbir Singh |
0b5bb2 |
if [ $? -eq 0 ]; then
|
|
Karanbir Singh |
0b5bb2 |
echo 'PASS'
|
|
Karanbir Singh |
0b5bb2 |
else
|
|
Karanbir Singh |
0b5bb2 |
echo 'FAIL'
|
|
Karanbir Singh |
0b5bb2 |
exit 1
|
|
Karanbir Singh |
0b5bb2 |
fi
|