bstinson / centos / t_functional

Forked from centos/t_functional 3 years ago
Clone

Blame tests/p_tomcat/tomcat_manager_test.sh

Athmane Madjoudj ebf159
#!/bin/sh
Athmane Madjoudj ebf159
# Author: Athmane Madjoudj <athmanem@gmail.com>
8925c5
uname_arch=$(uname -m)
8925c5
if [ "$uname_arch" == "i686" ] ; then
8925c5
t_Log "Skipping $0 on $uname_arch"
8925c5
exit 0
8925c5
else
Athmane Madjoudj 0a3c81
t_Log "Running $0 - Tomcat Web Application Manager test."
8925c5
fi
Athmane Madjoudj ebf159
curl -u admin:admin -s http://localhost:8080/manager/html | grep "Tomcat Web Application Manager"  >/dev/null 2>&1
Athmane Madjoudj ebf159
Athmane Madjoudj ebf159
t_CheckExitStatus $?