-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
client.jl
37 lines (32 loc) · 1.01 KB
/
client.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# This file is a part of Julia. License is MIT: https://julialang.org/license
nested_error_expr = quote
try
__not_a_binding__
catch
1 ÷ 0 # Generate error while handling error
end
end
nested_error_pattern = r"""
ERROR: DivideError: integer division error
Stacktrace:.*
caused by: UndefVarError: __not_a_binding__ not defined
Stacktrace:.*
"""s
@testset "display_error" begin
# Display of errors which cause more than one entry on the exception stack
err_str = try
eval(nested_error_expr)
catch
excs = Base.catch_stack()
@test typeof.(first.(excs)) == [UndefVarError, DivideError]
sprint(Base.display_error, excs)
end
@test occursin(nested_error_pattern, err_str)
end
@testset "Fallback REPL" begin
# Fallback REPL should show errors with display_error
errio = IOBuffer()
Base.eval_user_input(errio, nested_error_expr, true)
err_str = String(take!(errio))
@test occursin(nested_error_pattern, err_str)
end