Commit 755616a 1 parent 92891c1 commit 755616a Copy full SHA for 755616a
File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -666,15 +666,19 @@ let exename = `$(Base.julia_cmd()) --startup-file=no --color=no`
666
666
code = code[3 ]
667
667
@test occursin (" llvm.module.flags" , code)
668
668
@test occursin (" llvm.dbg.cu" , code)
669
- @test occursin (" int.jl" , code)
669
+ # TODO : consider moving test to llvmpasses as this fails on some platforms
670
+ # without clear reason
671
+ @test skip= true occursin (" int.jl" , code)
670
672
@test ! occursin (" name: \" Int64\" " , code)
671
673
end
672
674
let code = readchomperrors (` $exename -g2 -E "@eval Int64(1)+Int64(1)"` )
673
675
@test code[1 ]
674
676
code = code[3 ]
675
677
@test occursin (" llvm.module.flags" , code)
676
678
@test occursin (" llvm.dbg.cu" , code)
677
- @test occursin (" int.jl" , code)
679
+ # TODO : consider moving test to llvmpasses as this fails on some platforms
680
+ # without clear reason
681
+ @test skip= true occursin (" int.jl" , code)
678
682
@test occursin (" name: \" Int64\" " , code)
679
683
end
680
684
end
You can’t perform that action at this time.
0 commit comments