Skip to content

Commit cfa710e

Browse files
committed
fix failures on x64 systems
1 parent 7451eb9 commit cfa710e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_terminal.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ end
163163
# Native code view
164164
write(terminal, 'N')
165165
displayed, text = read_next(harness)
166-
@test occursin("retq", text)
166+
@test occursin(r"\bret[lq]?\b", text) # retq on x86-64, retl on x86, ret on ARM64
167167
@test occursin('[' * colorize(true, 'N') * "]ative", displayed)
168168
# Typed view (by selector)
169169
write(terminal, 'T')

0 commit comments

Comments
 (0)