Skip to content

Commit

Permalink
disable flaky tests - part backport from #53682
Browse files Browse the repository at this point in the history
  • Loading branch information
IanButterworth committed Jan 12, 2025
1 parent c9b78ce commit ab44c5d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/cmdlineargs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -652,15 +652,19 @@ let exename = `$(Base.julia_cmd()) --startup-file=no --color=no`
code = code[3]
@test occursin("llvm.module.flags", code)
@test occursin("llvm.dbg.cu", code)
@test occursin("int.jl", code)
# TODO: consider moving test to llvmpasses as this fails on some platforms
# without clear reason
@test_skip occursin("int.jl", code)
@test !occursin("\"Int64\"", code)
end
let code = readchomperrors(`$exename -g2 -E "@eval Int64(1)+Int64(1)"`)
@test code[1]
code = code[3]
@test occursin("llvm.module.flags", code)
@test occursin("llvm.dbg.cu", code)
@test occursin("int.jl", code)
# TODO: consider moving test to llvmpasses as this fails on some platforms
# without clear reason
@test_skip occursin("int.jl", code)
@test occursin("\"Int64\"", code)
end
end
Expand Down

0 comments on commit ab44c5d

Please sign in to comment.