File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Ganary/scripts/_olympus_internal Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -254,10 +254,10 @@ jobs:
254
254
--timeout 1m \
255
255
--scenario-numbers=1 \
256
256
--client-details=matrixLabel="${{ runner.os }}-${{ env.YYP_VERSION }}-${{ inputs.runtime}}" | tee test_output.txt
257
- - name : Parse the output and fail the run if the content contains the string `| Failed | `
257
+ - name : Parse the output and fail the run if the content does not contains the string `│ Passed │ `
258
258
if : runner.os == 'Linux'|| runner.os == 'macOS'
259
259
run : |
260
- if grep -q "| Passed | " test_output.txt; then
260
+ if grep -q "│ Passed │ " test_output.txt; then
261
261
echo "Game loop test passed"
262
262
else
263
263
echo "Game loop test failed"
Original file line number Diff line number Diff line change @@ -196,6 +196,7 @@ function _Olympus_Suite_Manager() constructor {
196
196
else {
197
197
show_message (ex);
198
198
}
199
+ return 999 ;
199
200
})
200
201
}
201
202
current_suite.queue_test ();
You can’t perform that action at this time.
0 commit comments