Skip to content

Commit

Permalink
Mark the backtrace test as broken on FreeBSD (#21917)
Browse files Browse the repository at this point in the history
Ref #21917
(cherry picked from commit 623eab4)
  • Loading branch information
ararslan committed May 27, 2018
1 parent a833395 commit 3d27e2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/cmdlineargs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,8 @@ for precomp in ("yes", "no")
bt = readstring(pipeline(ignorestatus(`$(Base.julia_cmd()) --startup-file=no --precompiled=$precomp
-E 'include("____nonexistent_file")'`), stderr=catcmd))
@test contains(bt, "include_from_node1")
if is_windows() && Sys.WORD_SIZE == 32 && precomp == "yes"
# fixme, issue #17251
if ((is_windows() && Sys.WORD_SIZE == 32) || (is_bsd() && !is_apple())) && precomp == "yes"
# FIXME: Issue #17251 (Windows), #20798 (FreeBSD)
@test_broken contains(bt, "include_from_node1(::String) at $(joinpath(".","loading.jl"))")
else
@test contains(bt, "include_from_node1(::String) at $(joinpath(".","loading.jl"))")
Expand Down

0 comments on commit 3d27e2d

Please sign in to comment.