Skip to content

Commit 666e936

Browse files
committed
Re-enable tests under validation.
[skip julia]
1 parent 890c932 commit 666e936

File tree

3 files changed

+9
-14
lines changed

3 files changed

+9
-14
lines changed

.buildkite/pipeline.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ steps:
1919
intel: "*"
2020
commands: |
2121
julia --project=deps deps/build_ci.jl
22-
if: build.message !~ /\[skip tests\]/
22+
if: build.message !~ /\[skip tests\]/ && build.message !~ /\[skip julia\]/
2323
timeout_in_minutes: 120
2424
matrix:
2525
setup:
@@ -56,15 +56,14 @@ steps:
5656
# use debug JLLs, for asserts + better backtraces
5757
using oneAPI
5858
oneAPI.set_debug!(true)'
59-
if: build.message !~ /\[skip tests\]/
6059
env:
6160
ZE_ENABLE_VALIDATION_LAYER: '1'
6261
ZE_ENABLE_PARAMETER_VALIDATION: '1'
6362
EnableDebugBreak: '0'
6463
agents:
6564
queue: "juliagpu"
6665
intel: "*"
67-
if: build.message !~ /\[skip tests\]/ && !build.pull_request.draft
66+
if: build.message !~ /\[skip tests\]/ && build.message !~ /\[skip special\]/ && !build.pull_request.draft
6867
timeout_in_minutes: 60
6968

7069
env:

test/onemkl.jl

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,10 @@ k = 13
2727
@test testf(axpy!, alpha, rand(T,m), rand(T,m))
2828
end
2929

30-
if !validation_layer # oneapi-src/oneMKL#473
31-
@testset "axpby" begin
32-
alpha = rand(T)
33-
beta = rand(T)
34-
@test testf(axpby!, alpha, rand(T,m), beta, rand(T,m))
35-
end
30+
@testset "axpby" begin
31+
alpha = rand(T)
32+
beta = rand(T)
33+
@test testf(axpby!, alpha, rand(T,m), beta, rand(T,m))
3634
end
3735

3836
@testset "rotate" begin

test/runtests.jl

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,9 @@ for (rootpath, dirs, files) in walkdir(@__DIR__)
7979
end
8080
end
8181
## GPUArrays testsuite
82-
if !validation_layer # oneapi-src/oneMKL#473
83-
for name in keys(TestSuite.tests)
84-
push!(tests, "gpuarrays$(Base.Filesystem.path_separator)$name")
85-
test_runners["gpuarrays$(Base.Filesystem.path_separator)$name"] = ()->TestSuite.tests[name](oneArray)
86-
end
82+
for name in keys(TestSuite.tests)
83+
push!(tests, "gpuarrays$(Base.Filesystem.path_separator)$name")
84+
test_runners["gpuarrays$(Base.Filesystem.path_separator)$name"] = ()->TestSuite.tests[name](oneArray)
8785
end
8886
unique!(tests)
8987

0 commit comments

Comments
 (0)