diff --git a/.github/workflows/win_clang_dbg_x64.yaml b/.github/workflows/win_clang_dbg_x64.yaml index 21bf4380d..98082eec0 100644 --- a/.github/workflows/win_clang_dbg_x64.yaml +++ b/.github/workflows/win_clang_dbg_x64.yaml @@ -149,11 +149,17 @@ jobs: cd test out\Debug\gpgmm_capture_replay_tests.exe --log-level=DEBUG --gtest_output=json:${{ github.workspace }}\..\test_capture_replay_tests.json 2>&1 - - name: Run gpgmm_capture_replay_tests to re-capture (with patch) + - name: Run gpgmm_capture_replay_tests to generate capture (with patch) shell: cmd run: | cd test - out\Debug\gpgmm_capture_replay_tests.exe -log-level=DEBUG --gtest_filter=*Replay/* --capture-mask=0x3 --ignore-caps-mismatch --disable-memory + out\Debug\gpgmm_capture_replay_tests.exe --log-level=DEBUG --gtest_filter=*Replay/* --capture-mask=0x3 --ignore-caps-mismatch --disable-memory + + - name: Run gpgmm_capture_replay_tests to playback capture (with patch) + shell: cmd + run: | + cd test + out\Debug\gpgmm_capture_replay_tests.exe --gtest_filter=*Replay/* - name: Regression check end2end tests run: | diff --git a/.github/workflows/win_clang_rel_x64.yaml b/.github/workflows/win_clang_rel_x64.yaml index 6e5d8d1fe..0c8f69ce6 100644 --- a/.github/workflows/win_clang_rel_x64.yaml +++ b/.github/workflows/win_clang_rel_x64.yaml @@ -149,12 +149,18 @@ jobs: cd test out\Release\gpgmm_capture_replay_tests.exe --gtest_output=json:${{ github.workspace }}\..\test_capture_replay_tests.json - - name: Run gpgmm_capture_replay_tests to re-capture (with patch) + - name: Run gpgmm_capture_replay_tests to generate capture (with patch) shell: cmd run: | cd test out\Release\gpgmm_capture_replay_tests.exe --gtest_filter=*Replay/* --capture-mask=0x3 --ignore-caps-mismatch --disable-memory + - name: Run gpgmm_capture_replay_tests to playback capture (with patch) + shell: cmd + run: | + cd test + out\Release\gpgmm_capture_replay_tests.exe --gtest_filter=*Replay/* + - name: Regression check end2end tests run: | python test\scripts\regression_check.py ${{ github.workspace }}\..\baseline_end2end_tests.json ${{ github.workspace }}\..\test_end2end_tests.json