Skip to content

Commit d4987a3

Browse files
authored
Update test due to switch to intel syntax by default in #48103 (#55993)
1 parent c7071e1 commit d4987a3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stdlib/InteractiveUtils/test/runtests.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -547,9 +547,9 @@ if Sys.ARCH === :x86_64 || occursin(ix86, string(Sys.ARCH))
547547
output = replace(String(take!(buf)), r"#[^\r\n]+" => "")
548548
@test !occursin(rgx, output)
549549

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

554554
@testset "binary" begin
555555
# check the RET instruction (opcode: C3)

0 commit comments

Comments
 (0)