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 70
70
arch : ${{ matrix.arch }}
71
71
72
72
# set-up packages
73
- - julia-actions/cache@v2
73
+ - uses : julia-actions/cache@v2
74
74
- uses : julia-actions/julia-buildpkg@v1
75
75
76
76
- name : Run tests
Original file line number Diff line number Diff line change 12
12
@testset " mangle" begin
13
13
struct XX{T} end
14
14
# 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 >)"
20
20
end
21
21
22
22
@testset " safe loggers" begin
You can’t perform that action at this time.
0 commit comments