Skip to content

Commit

Permalink
Fix CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt committed Sep 11, 2024
1 parent cbff0d4 commit 4d47957
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
arch: ${{ matrix.arch }}

# set-up packages
- julia-actions/cache@v2
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1

- name: Run tests
Expand Down
6 changes: 3 additions & 3 deletions test/util_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ end
# values checked with c++filt / cu++filt
@test GPUCompiler.mangle_sig(Tuple{typeof(sin), XX{false}}) == "_Z3sin2XXILb0EE" # "sin(XX<false>)"
@test GPUCompiler.mangle_sig(Tuple{typeof(sin), XX{true}}) == "_Z3sin2XXILb1EE" # "sin(XX<true>)"
@test GPUCompiler.mangle_sig(Tuple{typeof(sin), XX{Int64(10)}}) == "_Z3sin2XXILl10EE" # "sin(XX<10l>)"
@test GPUCompiler.mangle_sig(Tuple{typeof(sin), XX{Int64(0)}}) == "_Z3sin2XXILl0EE" # "sin(XX<0l>)"
@test GPUCompiler.mangle_sig(Tuple{typeof(sin), XX{Int64(-10)}}) == "_Z3sin2XXILln10EE" # "sin(XX<-10l>)"
@test GPUCompiler.mangle_sig(Tuple{typeof(sin), XX{Clong(10)}}) == "_Z3sin2XXILl10EE" # "sin(XX<10l>)"
@test GPUCompiler.mangle_sig(Tuple{typeof(sin), XX{Clong(0)}}) == "_Z3sin2XXILl0EE" # "sin(XX<0l>)"
@test GPUCompiler.mangle_sig(Tuple{typeof(sin), XX{Clong(-10)}}) == "_Z3sin2XXILln10EE" # "sin(XX<-10l>)"
end

@testset "safe loggers" begin
Expand Down

0 comments on commit 4d47957

Please sign in to comment.