Skip to content

Commit c872119

Browse files
IanButterworthKristofferC
authored and
KristofferC
committed
disable flaky tests - part backport from #53682
1 parent 24062bf commit c872119

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/cmdlineargs.jl

+6-2
Original file line numberDiff line numberDiff line change
@@ -652,15 +652,19 @@ let exename = `$(Base.julia_cmd()) --startup-file=no --color=no`
652652
code = code[3]
653653
@test occursin("llvm.module.flags", code)
654654
@test occursin("llvm.dbg.cu", code)
655-
@test occursin("int.jl", code)
655+
# TODO: consider moving test to llvmpasses as this fails on some platforms
656+
# without clear reason
657+
@test_skip occursin("int.jl", code)
656658
@test !occursin("\"Int64\"", code)
657659
end
658660
let code = readchomperrors(`$exename -g2 -E "@eval Int64(1)+Int64(1)"`)
659661
@test code[1]
660662
code = code[3]
661663
@test occursin("llvm.module.flags", code)
662664
@test occursin("llvm.dbg.cu", code)
663-
@test occursin("int.jl", code)
665+
# TODO: consider moving test to llvmpasses as this fails on some platforms
666+
# without clear reason
667+
@test_skip occursin("int.jl", code)
664668
@test occursin("\"Int64\"", code)
665669
end
666670
end

0 commit comments

Comments
 (0)