Skip to content

Instantly share code, notes, and snippets.

@rstanic12
Created February 24, 2019 22:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rstanic12/4993b8a2a70ebe9dd1015a9e553d9a65 to your computer and use it in GitHub Desktop.
Save rstanic12/4993b8a2a70ebe9dd1015a9e553d9a65 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
set -x
echo "Testng for $TEST_PLATFORM"
${UNITY_EXECUTABLE:-xvfb-run --auto-servernum --server-args='-screen 0 640x480x24' /opt/Unity/Editor/Unity} \
-projectPath $(pwd) \
-runTests \
-testPlatform $TEST_PLATFORM \
-testResults $(pwd)/$TEST_PLATFORM-results.xml \
-logFile \
-batchmode
UNITY_EXIT_CODE=$?
if [ $UNITY_EXIT_CODE -eq 0 ]; then
echo "Run succeeded, no failures occurred";
elif [ $UNITY_EXIT_CODE -eq 2 ]; then
echo "Run succeeded, some tests failed";
elif [ $UNITY_EXIT_CODE -eq 3 ]; then
echo "Run failure (other failure)";
else
echo "Unexpected exit code $UNITY_EXIT_CODE";
fi
cat $(pwd)/$TEST_PLATFORM-results.xml | grep test-run | grep Passed
exit $UNITY_TEST_EXIT_CODE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment