Skip to content

Commit 3b4281d

Browse files
authored
Update run_tests.sh
1 parent 22f4f92 commit 3b4281d

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

dist/platforms/ubuntu/run_tests.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,14 +211,15 @@ for platform in ${TEST_PLATFORMS//;/ }; do
211211
-batchmode \
212212
-nographics \
213213
-logFile "$FULL_ARTIFACTS_PATH/$platform-player.log" \
214-
#-testResults "$FULL_ARTIFACTS_PATH/$platform-results.xml" \
215214
$runTests
215+
#-testResults "$FULL_ARTIFACTS_PATH/$platform-results.xml" \
216+
216217

217218
# Catch exit code
218219
TEST_EXIT_CODE=$?
219220

220-
if [[ $TEST_EXIT_CODE -eq 0 && "$platform" == "customstandalone" ]]; then
221-
if grep -q "ALL_TESTS_SUCCESSFUL" "$FULL_ARTIFACTS_PATH/$platform-player.log" && ! grep -q "TEST_FAILURE" "$FULL_ARTIFACTS_PATH/$platform.log"; then
221+
if [[ $TEST_EXIT_CODE -eq 0 ]]; then
222+
if grep -q "ALL_TESTS_SUCCESSFUL" "$FULL_ARTIFACTS_PATH/$platform-player.log" && ! grep -q "TEST_FAILURE" "$FULL_ARTIFACTS_PATH/$platform-player.log"; then
222223
TEST_EXIT_CODE=0
223224
else
224225
TEST_EXIT_CODE=2

0 commit comments

Comments
 (0)