blob: 8b0cb06bd14b91d2bdd2e49a9687211fe9f9a3f1 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# A small Apache HTTPd test suite
# Author: Athmane Madjoudj <athmane@fedoraproject.org>
echo "Running $0 - httpd serve html page test."
curl -s http://localhost/ | grep 'Test Page' > /dev/null 2>&1
|