Skip to content

Commit

Permalink
Allow functional tests to run on Darwin
Browse files Browse the repository at this point in the history
Following #455, SPIRE is Darwin-compatible. This commit updates the functional tests to reflect this, as they previously performed detection.

Signed-off-by: Evan Gilman <[email protected]>
  • Loading branch information
evan2645 committed May 12, 2018
1 parent ef9c7dc commit d976ae2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
5 changes: 0 additions & 5 deletions script/e2e_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@
# default datastore file before beginning in order to ensure accurate resutls.
#

if [[ $(uname -s) == "Darwin" ]]; then
echo "This test is not Darwin compatible, exiting"
exit 0
fi

set -e

rm -f .data/datastore.sqlite3
Expand Down
5 changes: 0 additions & 5 deletions script/rotation_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ TIMEOUT=${1:-600}
START=`date +%s`
END=$(($START + $TIMEOUT))

if [[ $(uname -s) == "Darwin" ]]; then
echo "This test is not Darwin compatible, exiting"
exit 0
fi

set -e

rm -f .data/datastore.sqlite3
Expand Down

0 comments on commit d976ae2

Please sign in to comment.