Copy catch.hpp into qrenderdoc and run on --unittest in non-release

This commit is contained in:
baldurk
2022-05-17 14:13:49 +01:00
parent 2d8687e28e
commit 8c6192d5bd
8 changed files with 18258 additions and 28 deletions
+3 -3
View File
@@ -152,7 +152,7 @@ jobs:
- if: matrix.configuration == 'Development'
name: Running UI unit tests
run: |
if ! ./*/Development/qrenderdoc.exe --unittest test.log; then
if ! ./*/Development/qrenderdoc.exe --unittest log=test.log; then
echo "::error::$(cat test.log)" | tr -d '\r' | tr '\n' '\001' | sed -e 's#\x01#%0D%0A#g';
exit 1;
fi
@@ -240,7 +240,7 @@ jobs:
- if: matrix.type == 'Debug'
name: Run UI unit tests
run: |
if ! ./build/bin/qrenderdoc --unittest test.log; then
if ! ./build/bin/qrenderdoc --unittest log=test.log; then
echo "::error::$(cat test.log)" | tr '\n' '\001' | sed -e 's#\x01#%0A#g';
exit 1;
fi
@@ -312,7 +312,7 @@ jobs:
- if: matrix.type == 'Debug'
name: Run UI unit tests
run: |
if ! ./build/bin/qrenderdoc.app/Contents/MacOS/qrenderdoc --unittest test.log; then
if ! ./build/bin/qrenderdoc.app/Contents/MacOS/qrenderdoc --unittest log=test.log; then
echo "::error::$(cat test.log)" | tr '\n' '\001' | sed -e $'s#\x01#%0A#g';
exit 1;
fi