Skip to content

Commit

Permalink
Update test due to switch to intel syntax by default in JuliaLang#48103
Browse files Browse the repository at this point in the history
  • Loading branch information
Zentrik authored Oct 7, 2024
1 parent c7071e1 commit d4987a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stdlib/InteractiveUtils/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -547,9 +547,9 @@ if Sys.ARCH === :x86_64 || occursin(ix86, string(Sys.ARCH))
output = replace(String(take!(buf)), r"#[^\r\n]+" => "")
@test !occursin(rgx, output)

code_native(buf, linear_foo, ())
output = String(take!(buf))
@test occursin(rgx, output)
code_native(buf, linear_foo, (), debuginfo = :none)
output = replace(String(take!(buf)), r"#[^\r\n]+" => "")
@test !occursin(rgx, output)

@testset "binary" begin
# check the RET instruction (opcode: C3)
Expand Down

0 comments on commit d4987a3

Please sign in to comment.