2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-03-03 03:23:03 +00:00

chore: add tests for game hashing funcs

This commit is contained in:
Jan Laupetin
2026-02-22 23:17:07 +00:00
parent 95a9e897c2
commit 9502ebfc26
8 changed files with 346 additions and 0 deletions

View File

@@ -82,6 +82,7 @@ jobs:
- name: Test
working-directory: ${{ github.workspace }}/build/lib/Release_${{ matrix.build_arch }}/tests
run: |
./CommonTests
./ObjCommonTests
./ObjCompilingTests
./ObjLoadingTests
@@ -138,6 +139,8 @@ jobs:
working-directory: ${{ github.workspace }}/build/lib/Release_${{ matrix.build_arch }}/tests
run: |
$combinedExitCode = 0
./CommonTests
$combinedExitCode = [System.Math]::max($combinedExitCode, $LASTEXITCODE)
./ObjCommonTests
$combinedExitCode = [System.Math]::max($combinedExitCode, $LASTEXITCODE)
./ObjCompilingTests