/
githubmirror
/
julia
Обзор
Документация
Войти
/
githubmirror
/
julia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/stress_fd_exec.jl
24 строки
675 B
KristofferC
add license to top of new files
16 окт 2020, 22:41
16 окт 2020, 22:41
a37e0ae
Код
Авторство
О чём код?
# This file is a part of Julia. License is MIT: https://julialang.org/license using Test let ps = Pipe[] ulimit_n = tryparse(Int, readchomp(`sh -c 'ulimit -n'`)) try for i = 1:100*something(ulimit_n, 1000) p = Pipe() Base.link_pipe!(p) push!(ps, p) end if ulimit_n === nothing @warn "`ulimit -n` is set to unlimited, fd exhaustion cannot be tested" @test_broken false else @test false end catch ex isa(ex, Base.IOError) || rethrow() @test ex.code in (Base.UV_EMFILE, Base.UV_ENFILE) finally foreach(close, ps) end end