tests,gpu-compute: Fix Daily/Weekly GPU tests failures (#1485)

Without specifying the "gem5/gpu" directory, this test attempted to run
the entire test suite. This caused the daily and weekly tests to fail.
This change fixes this.
This commit is contained in:
Bobby R. Bruce
2024-08-20 14:18:51 -07:00
committed by GitHub
parent 1512eddd43
commit e7442036a5
2 changed files with 2 additions and 2 deletions

View File

@@ -94,7 +94,7 @@ jobs:
- name: Run Testlib GPU Tests
working-directory: ${{ github.workspace }}/tests
run: ./main.py run --length=long --skip-build -vvv -t $(nproc) --host gcn_gpu
run: ./main.py run --length=long --skip-build -vvv -t $(nproc) --host gcn_gpu gem5/gpu
- name: Upload results
if: success() || failure()

View File

@@ -74,7 +74,7 @@ jobs:
- name: Run Testlib GPU Tests
working-directory: ${{ github.workspace }}/tests
run: ./main.py run --length=very-long --skip-build -vvv -t $(nproc) --host gcn_gpu
run: ./main.py run --length=very-long --skip-build -vvv -t $(nproc) --host gcn_gpu gem5/gpu
- name: Upload results
if: success() || failure()