Skip to content

Commit

Permalink
Test fixes for nightly. (#514)
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt authored Jan 17, 2024
1 parent 2a8540e commit abb8dbd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: ['1.8', '1.9', '1.10.0-rc2', 'nightly']
version: ['1.8', '1.9', '1.10', 'nightly']
os: [ubuntu-latest, macOS-latest, windows-latest]
arch: [x64]
steps:
Expand Down
3 changes: 2 additions & 1 deletion test/testsuite/base.jl
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,8 @@ end
# only GPUArrays materialize the reinterpret(reshape) wrapper
@test b isa AT{Float32, 2}
end
@test Array(b) == [1.0 0.0 0.0; 2.0 2.0 3.0]
@test(Array(b) == [1.0 0.0 0.0; 2.0 2.0 3.0],
broken=(AT <: Array && VERSION >= v"1.11.0-DEV.727"))

a = AT(Float32[1.0 0.0 0.0; 2.0 2.0 3.0])
b = reinterpret(reshape, ComplexF32, a)
Expand Down

0 comments on commit abb8dbd

Please sign in to comment.