Skip to content

Commit

Permalink
Set default test validation level to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
sergcpp committed Jul 11, 2024
1 parent e6fee51 commit 55200fa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
uses: ./.github/actions/test
with:
bin-dir: "windows-x86_64"
test-args: "--device NV --nocpu"
test-args: "--device NV --nocpu -vl 0"
test-windows-x86_64-gpu-amd:
runs-on: [ windows, x86_64, amd ]
needs:
Expand All @@ -131,7 +131,7 @@ jobs:
uses: ./.github/actions/test
with:
bin-dir: "windows-x86_64"
test-args: "--device AMD --nocpu -vl 1"
test-args: "--device AMD --nocpu"
test-windows-x86_64-gpu-arc:
runs-on: [ windows, x86_64, arc ]
needs:
Expand All @@ -147,7 +147,7 @@ jobs:
uses: ./.github/actions/test
with:
bin-dir: "windows-x86_64"
test-args: "--device Arc --nocpu -vl 1"
test-args: "--device Arc --nocpu"
test-windows-x86_64-gpu-xe:
runs-on: [ windows, x86_64, xe ]
needs:
Expand All @@ -163,7 +163,7 @@ jobs:
uses: ./.github/actions/test
with:
bin-dir: "windows-x86_64"
test-args: "--device Xe --nocpu -vl 1"
test-args: "--device Xe --nocpu"
test-windows-arm64-cpu:
runs-on: [ windows, arm64 ]
needs:
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
uses: ./.github/actions/test
with:
bin-dir: "windows-arm64"
test-args: "--device Adreno --nocpu -vl 1"
test-args: "--device Adreno --nocpu"
test-linux-x86_64-cpu:
runs-on: [ linux, x86_64 ]
needs:
Expand Down Expand Up @@ -227,7 +227,7 @@ jobs:
uses: ./.github/actions/test
with:
bin-dir: "linux-x86_64"
test-args: "--device AMD --nocpu --nohwrt -vl 1"
test-args: "--device AMD --nocpu --nohwrt"
test-linux-x86_64-gpu-nv:
runs-on: [ linux, x86_64, nv ]
needs:
Expand All @@ -243,7 +243,7 @@ jobs:
uses: ./.github/actions/test
with:
bin-dir: "linux-x86_64"
test-args: "--device NV --nocpu -vl 1"
test-args: "--device NV --nocpu"
test-macos-arm64-cpu:
runs-on: [ macos, arm64 ]
needs:
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
uses: ./.github/actions/test
with:
bin-dir: "macos-universal"
test-args: "--device M1 --nocpu -vl 1"
test-args: "--device M1 --nocpu"
test-macos-x86_64-cpu:
runs-on: [ macos, x86_64 ]
needs:
Expand Down
2 changes: 1 addition & 1 deletion tests/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ bool g_catch_flt_exceptions = false;
bool g_determine_sample_count = false;
bool g_minimal_output = false;
bool g_nohwrt = false;
int g_validation_level = 0;
int g_validation_level = 1;

#ifdef _WIN32
#ifndef NOMINMAX
Expand Down

0 comments on commit 55200fa

Please sign in to comment.