Commit 8b09d3fc authored by Nikias Bassen's avatar Nikias Bassen

[github actions] Print test log of failed tests when testing windows build

parent 878d0d83
...@@ -48,3 +48,15 @@ jobs: ...@@ -48,3 +48,15 @@ jobs:
run: msys2do make run: msys2do make
- name: make check - name: make check
run: msys2do make check run: msys2do make check
- name: print test logs
run: |
for I in test/*.trs; do
RES=`grep ":test-result" $I |cut -d ":" -f 3`
if test $RES != PASS; then
TESTNAME=`basename $I .trs`
echo $TESTNAME:
cat test/$TESTNAME.log
echo
fi
done
shell: bash
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment