From a248031adadf746614ff315d93386e7e04504081 Mon Sep 17 00:00:00 2001 From: Kristoffer Carlsson Date: Wed, 21 Sep 2016 23:03:22 +0200 Subject: [PATCH] update tests --- test/cmdlineargs.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/cmdlineargs.jl b/test/cmdlineargs.jl index 0ccc33e493a3b..2b00bff1b0711 100644 --- a/test/cmdlineargs.jl +++ b/test/cmdlineargs.jl @@ -327,12 +327,12 @@ end 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, "in include_from_node1") + @test contains(bt, "include_from_node1") if is_windows() && Sys.WORD_SIZE == 32 && precomp == "yes" # fixme, issue #17251 - @test_broken contains(bt, "in include_from_node1(::String) at $(joinpath(".","loading.jl"))") + @test_broken contains(bt, "include_from_node1(::String) at $(joinpath(".","loading.jl"))") else - @test contains(bt, "in include_from_node1(::String) at $(joinpath(".","loading.jl"))") + @test contains(bt, "include_from_node1(::String) at $(joinpath(".","loading.jl"))") end lno = match(r"at \.[\/\\]loading\.jl:(\d+)", bt) @test length(lno.captures) == 1