Skip to content

Commit

Permalink
Add failing test for JuliaLang#18141.
Browse files Browse the repository at this point in the history
  • Loading branch information
twadleigh committed Aug 19, 2016
1 parent 953271a commit fce6830
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test/env.jl
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,10 @@ end

# Test for #10853
@test withenv(Dict{Any,Any}()...) do; true; end

# Test for #18141
for (k, v) in ENV
if length(v) > 0
@test v[end] != '\0'
end
end

0 comments on commit fce6830

Please sign in to comment.