Skip to content

Commit

Permalink
Update cmdlineargs.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
DilumAluthge authored Aug 26, 2021
1 parent a849f32 commit 805280f
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 @@ -644,7 +644,7 @@ end
close(err.in)
let s = read(err, String)
@test occursin("ERROR: could not load library \"$nonexist_image\"\n", s)
@test_broken !occursin("Segmentation fault", s)
@test !occursin("Segmentation fault", s)
@test !occursin("EXCEPTION_ACCESS_VIOLATION", s)
end
@test !success(p)
Expand All @@ -656,7 +656,7 @@ end
p = run(pipeline(`$exename --sysimage=$libjulia`, stderr=err), wait=false)
close(err.in)
let s = read(err, String)
@test_broken s == "ERROR: System image file failed consistency check: maybe opened the wrong version?\n"
@test s == "ERROR: System image file failed consistency check: maybe opened the wrong version?\n"
end
@test !success(p)
@test_broken !Base.process_signaled(p)
Expand Down

0 comments on commit 805280f

Please sign in to comment.