Reported here https://github.com/JuliaLang/julia/issues/15072

On Sat, 2016-02-13 at 22:33, Scott Jones <[email protected]> wrote:
> I'm seeing a very strange failure recently (within the last week), where
> running "test/runtests.jl" seems to pass, but running the individual test 
> shows
> a very different result.
> I've reduced it to this, it seems to be a problem with the scope used for s in
> the third line.
>
> let s = "b\u0300lahβlahb\u0302láh",
>   g = ["b\u0300","l","a","h","β","l","a","h","b\u0302","l","á","h"]
>   g_ = map(s -> normalize_string(s, :NFC), g)
>   g0 = map(x -> normalize_string(x, :NFC), g)
>   println(g_)
>   println(g0)
> end
>
>
> I'm rather concerned, because this failure when running test/unicode.jl is
> masked when running test/runtests.jl - could other failures on master be
> getting masked?

Reply via email to