From 460374b6f4c59f9dac647b96cd1e0f56e283b6d0 Mon Sep 17 00:00:00 2001 From: Paul Caskey Date: Thu, 11 Oct 2018 22:55:01 -0400 Subject: [PATCH] test fix --- tests/fulltest.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/fulltest.sh b/tests/fulltest.sh index 8d16a7e..01e5827 100755 --- a/tests/fulltest.sh +++ b/tests/fulltest.sh @@ -10,7 +10,7 @@ echo "Waiting 3 minutes while everything comes up..." sleep 180 pushd tests &>/dev/null -rm -f lastpage.txt +rm -f ./lastpage.txt #ensure webisoget is installed echo "ensuring that webisoget is installed..." @@ -31,9 +31,9 @@ else fi echo "Attempting full-cycle test..." -webisoget -verbose -out lastpage.txt -formfile sptest.login -url https://sptest.example.edu:8443/secure/ &>/dev/null +webisoget -verbose -out ./lastpage.txt -formfile ./sptest.login -url https://sptest.example.edu:8443/secure/ -if [ -s lastpage.txt ]; then +if [ -s ./lastpage.txt ]; then cat lastpage.txt | grep kwhite@example.edu &>/dev/null if [ $? == "0" ]; then echo "The full-cycle test of the IdP and SP was successfull!"