File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 7070 arch : ${{ matrix.arch }}
7171
7272 # set-up packages
73- - julia-actions/cache@v2
73+ - uses : julia-actions/cache@v2
7474 - uses : julia-actions/julia-buildpkg@v1
7575
7676 - name : Run tests
Original file line number Diff line number Diff line change 1212@testset " mangle" begin
1313 struct XX{T} end
1414 # values checked with c++filt / cu++filt
15- @test GPUCompiler. mangle_sig (Tuple{typeof (sin), XX{false }}) == " _Z3sin2XXILb0EE" # "sin(XX<false>)"
16- @test GPUCompiler. mangle_sig (Tuple{typeof (sin), XX{true }}) == " _Z3sin2XXILb1EE" # "sin(XX<true>)"
17- @test GPUCompiler. mangle_sig (Tuple{typeof (sin), XX{Int64 (10 )}}) == " _Z3sin2XXILl10EE " # "sin(XX<10l >)"
18- @test GPUCompiler. mangle_sig (Tuple{typeof (sin), XX{Int64 (0 )}}) == " _Z3sin2XXILl0EE " # "sin(XX<0l >)"
19- @test GPUCompiler. mangle_sig (Tuple{typeof (sin), XX{Int64 (- 10 )}}) == " _Z3sin2XXILln10EE " # "sin(XX<-10l >)"
15+ @test GPUCompiler. mangle_sig (Tuple{typeof (sin), XX{false }}) == " _Z3sin2XXILb0EE" # "sin(XX<false>)"
16+ @test GPUCompiler. mangle_sig (Tuple{typeof (sin), XX{true }}) == " _Z3sin2XXILb1EE" # "sin(XX<true>)"
17+ @test GPUCompiler. mangle_sig (Tuple{typeof (sin), XX{Cshort (10 )}}) == " _Z3sin2XXILs10EE " # "sin(XX<(short)10 >)"
18+ @test GPUCompiler. mangle_sig (Tuple{typeof (sin), XX{Cshort (0 )}}) == " _Z3sin2XXILs0EE " # "sin(XX<(short)l >)"
19+ @test GPUCompiler. mangle_sig (Tuple{typeof (sin), XX{Cshort (- 10 )}}) == " _Z3sin2XXILsn10EE " # "sin(XX<(short)-10 >)"
2020end
2121
2222@testset " safe loggers" begin
You can’t perform that action at this time.
0 commit comments