Skip to content

Commit

Permalink
full test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pcaskey committed Oct 12, 2018
1 parent e31a4aa commit 85eeff3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/fulltest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ fi
ping -c 1 sptest.example.edu &>/dev/null
if [ $? -ne '0' ]; then
echo "adding hosts record for sp..."
sudo echo "127.0.0.1 sptest.example.edu" >> /etc/hosts
echo '127.0.0.1 sptest.example.edu' | sudo tee -a /etc/hosts
fi
ping -c 1 idp.example.edu &>/dev/null
if [ $? -ne '0' ]; then
echo "adding hosts record for idp..."
sudo echo "127.0.0.1 idp.example.edu" >> /etc/hosts
echo '127.0.0.1 idp.example.edu' | sudo tee -a /etc/hosts
fi

echo "Attempting full-cycle test..."
Expand Down

0 comments on commit 85eeff3

Please sign in to comment.