=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== julia-1.5.3+dfsg/HISTORY.md-184-* `Regex` can now be multiplied (`*`) and exponentiated (`^`), like strings ([#23422]). julia-1.5.3+dfsg/HISTORY.md:185:* `Cmd` interpolation (``` `$(x::Cmd) a b c` ``` where) now propagates `x`'s process flags julia-1.5.3+dfsg/HISTORY.md-186- (environment, flags, working directory, etc) if `x` is the first interpolant and errors ############################################## julia-1.5.3+dfsg/HISTORY.md-196-* `mod` now accepts a unit range as the second argument to easily perform offset modular arithmetic to ensure the result is inside the range ([#32628]). julia-1.5.3+dfsg/HISTORY.md:197:* `nothing` can now be `print`ed, and interpolated into strings etc. as the string `"nothing"`. It is still not permitted to be interpolated into Cmds (i.e. ``echo `$(nothing)` `` will still error without running anything.) ([#32148]) julia-1.5.3+dfsg/HISTORY.md-198-* When `open` is called with a function, command, and keyword argument (e.g. ```open(`ls`, read=true) do f ...```) ############################################## julia-1.5.3+dfsg/HISTORY.md-233- julia-1.5.3+dfsg/HISTORY.md:234:* `Sockets.recvfrom` now returns both host and port as an InetAddr ([#32729]). julia-1.5.3+dfsg/HISTORY.md-235-* Added `InetAddr` constructor from `AbstractString`, representing IP address, and `Integer`, ############################################## julia-1.5.3+dfsg/HISTORY.md-338-* `getipaddrs()` function returns all the IP addresses of the local machine, with IPv4 addresses sorting before IPv6 addresses ([#30349, #30604]). julia-1.5.3+dfsg/HISTORY.md:339:* `getipaddr(addr_type)` and `getipaddrs(addr_type)` functions returns an IP address(es) of the desired type of the local machine ([#30604]). julia-1.5.3+dfsg/HISTORY.md-340-* Added `Base.hasproperty` and `Base.hasfield` ([#28850]). ############################################## julia-1.5.3+dfsg/HISTORY.md-911- julia-1.5.3+dfsg/HISTORY.md:912: * Non-parenthesized interpolated variables in strings, e.g. `"$x"`, must be followed julia-1.5.3+dfsg/HISTORY.md-913- by a character that will never be an allowed identifier character (currently ############################################## julia-1.5.3+dfsg/HISTORY.md-1065- To load the same file everywhere from node 1, one possible alternative is to broadcast a call to `include_string`: julia-1.5.3+dfsg/HISTORY.md:1066: `@everywhere include_string(Main, $(read("filename", String)), "filename")`. julia-1.5.3+dfsg/HISTORY.md-1067- Improving upon this API is left as an opportunity for packages. ############################################## julia-1.5.3+dfsg/HISTORY.md-3021- ``` `export FOO=1\;` ``` should replace ``` `export FOO=1;` ``` and julia-1.5.3+dfsg/HISTORY.md:3022: ``` `cd $dir '&&' $thingie` ``` should replace ``` `cd $dir && $thingie` ``` ([#19786]). julia-1.5.3+dfsg/HISTORY.md-3023- ############################################## julia-1.5.3+dfsg/base/Base.jl-164-# For OS specific stuff julia-1.5.3+dfsg/base/Base.jl:165:include(string((length(Core.ARGS)>=2 ? Core.ARGS[2] : ""), "build_h.jl")) # include($BUILDROOT/base/build_h.jl) julia-1.5.3+dfsg/base/Base.jl:166:include(string((length(Core.ARGS)>=2 ? Core.ARGS[2] : ""), "version_git.jl")) # include($BUILDROOT/base/version_git.jl) julia-1.5.3+dfsg/base/Base.jl-167- ############################################## julia-1.5.3+dfsg/base/Makefile-125- $1_wd="`pwd`" && \ julia-1.5.3+dfsg/base/Makefile:126: $1_=`readlink -n $${$1} || true` && \ julia-1.5.3+dfsg/base/Makefile:127: if [ -n "$${$1_}" ]; then $1_wd=`dirname "$${$1}"`; $1="$${$1_}"; fi julia-1.5.3+dfsg/base/Makefile-128-## if it's a relative path, make it an absolute path julia-1.5.3+dfsg/base/Makefile-129-resolve_path += && \ julia-1.5.3+dfsg/base/Makefile:130: if [ -z "`echo $${$1} | grep '^/'`" ]; then $1=$${$1_wd}/$${$1}; fi julia-1.5.3+dfsg/base/Makefile-131-ifeq ($(OS), Darwin) ############################################## julia-1.5.3+dfsg/base/Makefile-135-resolve_path += && \ julia-1.5.3+dfsg/base/Makefile:136: $1_=`otool -D $${$1} | tail -n +2 | sed -e 's/^@.*$$//'` && \ julia-1.5.3+dfsg/base/Makefile-137- if [ -n "$${$1_}" ]; then \ julia-1.5.3+dfsg/base/Makefile:138: $1_wd=`dirname "$${$1}"`; $1=$${$1_}; \ julia-1.5.3+dfsg/base/Makefile:139: if [ -z "`echo $${$1} | grep '^/'`" ]; then $1=$${$1_wd}/$${$1}; fi; \ julia-1.5.3+dfsg/base/Makefile-140- fi ############################################## julia-1.5.3+dfsg/base/Makefile-143-resolve_path += && \ julia-1.5.3+dfsg/base/Makefile:144: $1_=`objdump -p "$${$1}" | awk '/SONAME/ {print $$2}'` && \ julia-1.5.3+dfsg/base/Makefile-145- if [ -n "$${$1_}" ]; then \ ############################################## julia-1.5.3+dfsg/base/Makefile-160-$$(build_private_libdir)/$1.$$(SHLIB_EXT): julia-1.5.3+dfsg/base/Makefile:161: REALPATH=`$$(call spawn,$$(build_depsbindir)/libwhich) -p $$(notdir $$@)` && \ julia-1.5.3+dfsg/base/Makefile-162- $$(call resolve_path,REALPATH) && \ ############################################## julia-1.5.3+dfsg/base/abstractarray.jl-1254-_unaliascopy(A, C) = throw(ArgumentError(""" julia-1.5.3+dfsg/base/abstractarray.jl:1255: an array of type `$(typeof(A).name)` shares memory with another argument and must julia-1.5.3+dfsg/base/abstractarray.jl-1256- make a preventative copy of itself in order to maintain consistent semantics, julia-1.5.3+dfsg/base/abstractarray.jl:1257: but `copy(A)` returns a new array of type `$(typeof(C))`. To fix, implement: julia-1.5.3+dfsg/base/abstractarray.jl:1258: `Base.unaliascopy(A::$(typeof(A).name))::typeof(A)`""")) julia-1.5.3+dfsg/base/abstractarray.jl-1259-unaliascopy(A) = A ############################################## julia-1.5.3+dfsg/base/array.jl-520- $fname(dims::DimOrInd...) = $fname(dims) julia-1.5.3+dfsg/base/array.jl:521: $fname(::Type{T}, dims::DimOrInd...) where {T} = $fname(T, dims) julia-1.5.3+dfsg/base/array.jl-522- $fname(dims::Tuple{Vararg{DimOrInd}}) = $fname(Float64, dims) julia-1.5.3+dfsg/base/array.jl:523: $fname(::Type{T}, dims::NTuple{N, Union{Integer, OneTo}}) where {T,N} = $fname(T, map(to_dim, dims)) julia-1.5.3+dfsg/base/array.jl-524- function $fname(::Type{T}, dims::NTuple{N, Integer}) where {T,N} ############################################## julia-1.5.3+dfsg/base/array.jl-846- julia-1.5.3+dfsg/base/array.jl:847:@eval setindex!(A::Array{T}, x, i1::Int) where {T} = arrayset($(Expr(:boundscheck)), A, convert(T,x)::T, i1) julia-1.5.3+dfsg/base/array.jl-848-@eval setindex!(A::Array{T}, x, i1::Int, i2::Int, I::Int...) where {T} = ############################################## julia-1.5.3+dfsg/base/arraymath.jl-29-for f in (:-, :conj, :real, :imag) julia-1.5.3+dfsg/base/arraymath.jl:30: @eval ($f)(A::AbstractArray) = broadcast_preserving_zero_d($f, A) julia-1.5.3+dfsg/base/arraymath.jl-31-end ############################################## julia-1.5.3+dfsg/base/arraymath.jl-51- if f !== :/ julia-1.5.3+dfsg/base/arraymath.jl:52: @eval ($f)(A::Number, B::AbstractArray) = broadcast_preserving_zero_d($f, A, B) julia-1.5.3+dfsg/base/arraymath.jl-53- end julia-1.5.3+dfsg/base/arraymath.jl-54- if f !== :\ julia-1.5.3+dfsg/base/arraymath.jl:55: @eval ($f)(A::AbstractArray, B::Number) = broadcast_preserving_zero_d($f, A, B) julia-1.5.3+dfsg/base/arraymath.jl-56- end ############################################## julia-1.5.3+dfsg/base/atomics.jl-263- julia-1.5.3+dfsg/base/atomics.jl:264:Performs `x[] \$= val` atomically. Returns the **old** value. julia-1.5.3+dfsg/base/atomics.jl-265- ############################################## julia-1.5.3+dfsg/base/boot.jl-365- julia-1.5.3+dfsg/base/boot.jl:366:_new(typ::Symbol, argty::Symbol) = eval(Core, :($typ(@nospecialize n::$argty) = $(Expr(:new, typ, :n)))) julia-1.5.3+dfsg/base/boot.jl-367-_new(:GotoNode, :Int) ############################################## julia-1.5.3+dfsg/base/boot.jl-370-_new(:SSAValue, :Int) julia-1.5.3+dfsg/base/boot.jl:371:eval(Core, :(LineNumberNode(l::Int) = $(Expr(:new, :LineNumberNode, :l, nothing)))) julia-1.5.3+dfsg/base/boot.jl:372:eval(Core, :(LineNumberNode(l::Int, @nospecialize(f)) = $(Expr(:new, :LineNumberNode, :l, :f)))) julia-1.5.3+dfsg/base/boot.jl-373-LineNumberNode(l::Int, f::String) = LineNumberNode(l, Symbol(f)) julia-1.5.3+dfsg/base/boot.jl:374:eval(Core, :(GlobalRef(m::Module, s::Symbol) = $(Expr(:new, :GlobalRef, :m, :s)))) julia-1.5.3+dfsg/base/boot.jl:375:eval(Core, :(SlotNumber(n::Int) = $(Expr(:new, :SlotNumber, :n)))) julia-1.5.3+dfsg/base/boot.jl:376:eval(Core, :(TypedSlot(n::Int, @nospecialize(t)) = $(Expr(:new, :TypedSlot, :n, :t)))) julia-1.5.3+dfsg/base/boot.jl:377:eval(Core, :(PhiNode(edges::Array{Any, 1}, values::Array{Any, 1}) = $(Expr(:new, :PhiNode, :edges, :values)))) julia-1.5.3+dfsg/base/boot.jl:378:eval(Core, :(PiNode(val, typ) = $(Expr(:new, :PiNode, :val, :typ)))) julia-1.5.3+dfsg/base/boot.jl:379:eval(Core, :(PhiCNode(values::Array{Any, 1}) = $(Expr(:new, :PhiCNode, :values)))) julia-1.5.3+dfsg/base/boot.jl:380:eval(Core, :(UpsilonNode(val) = $(Expr(:new, :UpsilonNode, :val)))) julia-1.5.3+dfsg/base/boot.jl:381:eval(Core, :(UpsilonNode() = $(Expr(:new, :UpsilonNode)))) julia-1.5.3+dfsg/base/boot.jl-382-eval(Core, :(LineInfoNode(@nospecialize(method), file::Symbol, line::Int, inlined_at::Int) = ############################################## julia-1.5.3+dfsg/base/broadcast.jl-1224-`expr`, splice those function calls in with `\$`. For example, julia-1.5.3+dfsg/base/broadcast.jl:1225:`@. sqrt(abs(\$sort(x)))` is equivalent to `sqrt.(abs.(sort(x)))` julia-1.5.3+dfsg/base/broadcast.jl-1226-(no dot for `sort`). ############################################## julia-1.5.3+dfsg/base/c.jl-621- name = $name julia-1.5.3+dfsg/base/c.jl:622: throw(ArgumentError("interpolated function `$name` was not a Ptr{Cvoid}, but $(typeof(func))")) julia-1.5.3+dfsg/base/c.jl-623- end ############################################## julia-1.5.3+dfsg/base/c.jl-660-is resolved in the current process. Alternatively, `@ccall` may julia-1.5.3+dfsg/base/c.jl:661:also be used to call a function pointer `\$function_pointer`, such as julia-1.5.3+dfsg/base/c.jl-662-one returned by `dlsym`. ############################################## julia-1.5.3+dfsg/base/client.jl-66- end julia-1.5.3+dfsg/base/client.jl:67: cmd = `$shell -c $shell_escape_cmd` julia-1.5.3+dfsg/base/client.jl-68- end ############################################## julia-1.5.3+dfsg/base/client.jl-258- let Distributed = require(PkgId(UUID((0x8ba89e20_285c_5b6f, 0x9357_94700520ee1b)), "Distributed")) julia-1.5.3+dfsg/base/client.jl:259: Core.eval(Main, :(const Distributed = $Distributed)) julia-1.5.3+dfsg/base/client.jl-260- Core.eval(Main, :(using .Distributed)) ############################################## julia-1.5.3+dfsg/base/client.jl-363- let InteractiveUtils = require(PkgId(UUID(0xb77e0a4c_d291_57a0_90e8_8db25a27a240), "InteractiveUtils")) julia-1.5.3+dfsg/base/client.jl:364: Core.eval(Main, :(const InteractiveUtils = $InteractiveUtils)) julia-1.5.3+dfsg/base/client.jl-365- Core.eval(Main, :(using .InteractiveUtils)) ############################################## julia-1.5.3+dfsg/base/deprecated.jl-46- $meta julia-1.5.3+dfsg/base/deprecated.jl:47: depwarn($"`$old` is deprecated, use `$new` instead.", Core.Typeof($(esc(old))).name.mt.name) julia-1.5.3+dfsg/base/deprecated.jl-48- $(esc(new))(args...) ############################################## julia-1.5.3+dfsg/base/deprecated.jl-70- $meta julia-1.5.3+dfsg/base/deprecated.jl:71: depwarn($"`$oldcall` is deprecated, use `$newcall` instead.", Core.Typeof($(esc(oldsym))).name.mt.name) julia-1.5.3+dfsg/base/deprecated.jl-72- $(esc(new)) ############################################## julia-1.5.3+dfsg/base/deprecated.jl-144-macro deprecate_stdlib(old, mod, export_old=true, newname=old) julia-1.5.3+dfsg/base/deprecated.jl:145: rename = old === newname ? "" : " as `$newname`" julia-1.5.3+dfsg/base/deprecated.jl:146: dep_message = """: it has been moved to the standard library package `$mod`$rename. julia-1.5.3+dfsg/base/deprecated.jl:147: Add `using $mod` to your imports.""" julia-1.5.3+dfsg/base/deprecated.jl-148- new = GlobalRef(Base.root_module(Base, mod), newname) ############################################## julia-1.5.3+dfsg/base/deprecated.jl-203- f, l = __source__.file, __source__.line julia-1.5.3+dfsg/base/deprecated.jl:204: @warn "`@get!(dict, key, default)` at $f:$l is deprecated, use `get!(()->default, dict, key)` instead." julia-1.5.3+dfsg/base/deprecated.jl-205- return quote ############################################## julia-1.5.3+dfsg/base/docs/Docs.jl-78- if !isdefined(m, META) julia-1.5.3+dfsg/base/docs/Docs.jl:79: Core.eval(m, :(const $META = $(IdDict()))) julia-1.5.3+dfsg/base/docs/Docs.jl-80- push!(modules, m) ############################################## julia-1.5.3+dfsg/base/docs/Docs.jl-226- # is suppressed for symbols in Main, for interactive use (#23011). julia-1.5.3+dfsg/base/docs/Docs.jl:227: __module__ == Main || @warn "Replacing docs for `$b :: $sig` in module `$(__module__)`" julia-1.5.3+dfsg/base/docs/Docs.jl-228- else ############################################## julia-1.5.3+dfsg/base/docs/Docs.jl-389- if def === nothing julia-1.5.3+dfsg/base/docs/Docs.jl:390: esc(:(Core.eval($name, $(quot(docex))))) julia-1.5.3+dfsg/base/docs/Docs.jl-391- else ############################################## julia-1.5.3+dfsg/base/docs/bindings.jl-24- isexpr(x, :.) ? (x.args[1], x.args[2]) : julia-1.5.3+dfsg/base/docs/bindings.jl:25: error("Invalid @var syntax `$x`.") julia-1.5.3+dfsg/base/docs/bindings.jl-26-end ############################################## julia-1.5.3+dfsg/base/docs/bindings.jl-28-splitexpr(r::GlobalRef) = r.mod, quot(r.name) julia-1.5.3+dfsg/base/docs/bindings.jl:29:splitexpr(other) = error("Invalid @var syntax `$other`.") julia-1.5.3+dfsg/base/docs/bindings.jl-30- ############################################## julia-1.5.3+dfsg/base/download.jl-12- # PowerShell v3 or later is required for Tls12 julia-1.5.3+dfsg/base/download.jl:13: proc = run(pipeline(`$ps -Version 3 -NoProfile -Command "$tls12; $downloadfile"`; stderr=stderr); wait=false) julia-1.5.3+dfsg/base/download.jl-14- if !success(proc) ############################################## julia-1.5.3+dfsg/base/download.jl-39- err = PipeBuffer() julia-1.5.3+dfsg/base/download.jl:40: process = run(pipeline(`$curl_exe -s -S -g -L -f -o $filename $url`, stderr=err), wait=false) julia-1.5.3+dfsg/base/download.jl-41- if !success(process) ############################################## julia-1.5.3+dfsg/base/download.jl-66- try julia-1.5.3+dfsg/base/download.jl:67: run(`wget -O $filename $url`) julia-1.5.3+dfsg/base/download.jl-68- catch ############################################## julia-1.5.3+dfsg/base/download.jl-73- try julia-1.5.3+dfsg/base/download.jl:74: run(`busybox wget -O $filename $url`) julia-1.5.3+dfsg/base/download.jl-75- catch ############################################## julia-1.5.3+dfsg/base/download.jl-79- elseif Sys.which("fetch") !== nothing julia-1.5.3+dfsg/base/download.jl:80: run(`fetch -f $filename $url`) julia-1.5.3+dfsg/base/download.jl-81- else ############################################## julia-1.5.3+dfsg/base/errorshow.jl-166- return showerror(io, ErrorException(""" julia-1.5.3+dfsg/base/errorshow.jl:167: `$(ex.var)` has been moved to the package LegacyStrings.jl: julia-1.5.3+dfsg/base/errorshow.jl-168- Run Pkg.add("LegacyStrings") to install LegacyStrings on Julia v0.5-; julia-1.5.3+dfsg/base/errorshow.jl:169: Then do `using LegacyStrings` to get `$(ex.var)`. julia-1.5.3+dfsg/base/errorshow.jl-170- """)) ############################################## julia-1.5.3+dfsg/base/essentials.jl-182-macro eval(ex) julia-1.5.3+dfsg/base/essentials.jl:183: :(Core.eval($__module__, $(Expr(:quote,ex)))) julia-1.5.3+dfsg/base/essentials.jl-184-end julia-1.5.3+dfsg/base/essentials.jl-185-macro eval(mod, ex) julia-1.5.3+dfsg/base/essentials.jl:186: :(Core.eval($(esc(mod)), $(Expr(:quote,ex)))) julia-1.5.3+dfsg/base/essentials.jl-187-end ############################################## julia-1.5.3+dfsg/base/fastmath.jl-268- # fall-back implementation that applies after promotion julia-1.5.3+dfsg/base/fastmath.jl:269: $op_fast(x::T,ys::T...) where {T<:Number} = $op(x,ys...) julia-1.5.3+dfsg/base/fastmath.jl-270- end ############################################## julia-1.5.3+dfsg/base/fastmath.jl-378- # fall-back implementation that applies after promotion julia-1.5.3+dfsg/base/fastmath.jl:379: $f_fast(x::T, y::T) where {T<:Number} = $f(x, y) julia-1.5.3+dfsg/base/fastmath.jl-380- end ############################################## julia-1.5.3+dfsg/base/filesystem.jl-59-include("file.jl") julia-1.5.3+dfsg/base/filesystem.jl:60:include(string(length(Core.ARGS) >= 2 ? Core.ARGS[2] : "", "file_constants.jl")) # include($BUILDROOT/base/file_constants.jl) julia-1.5.3+dfsg/base/filesystem.jl-61- ############################################## julia-1.5.3+dfsg/base/float.jl-397-for op in (:+, :-, :*, :/, :\, :^) julia-1.5.3+dfsg/base/float.jl:398: @eval ($op)(a::Float16, b::Float16) = Float16(($op)(Float32(a), Float32(b))) julia-1.5.3+dfsg/base/float.jl-399-end ############################################## julia-1.5.3+dfsg/base/float.jl-466-for op in (:<, :<=, :isless) julia-1.5.3+dfsg/base/float.jl:467: @eval ($op)(a::Float16, b::Float16) = ($op)(Float32(a), Float32(b)) julia-1.5.3+dfsg/base/float.jl-468-end ############################################## julia-1.5.3+dfsg/base/libc.jl-16- julia-1.5.3+dfsg/base/libc.jl:17:include(string(length(Core.ARGS) >= 2 ? Core.ARGS[2] : "", "errno_h.jl")) # include($BUILDROOT/base/errno_h.jl) julia-1.5.3+dfsg/base/libc.jl-18- ############################################## julia-1.5.3+dfsg/base/libuv.jl-4- julia-1.5.3+dfsg/base/libuv.jl:5:include(string(length(Core.ARGS) >= 2 ? Core.ARGS[2] : "", "uv_constants.jl")) # include($BUILDROOT/base/uv_constants.jl) julia-1.5.3+dfsg/base/libuv.jl-6- ############################################## julia-1.5.3+dfsg/base/loading.jl-888- uuidkey = identify_package(into, String(mod)) julia-1.5.3+dfsg/base/loading.jl:889: # Core.println("require($(PkgId(into)), $mod) -> $uuidkey") julia-1.5.3+dfsg/base/loading.jl-890- if uuidkey === nothing ############################################## julia-1.5.3+dfsg/base/loading.jl-894- Package $mod not found in current path: julia-1.5.3+dfsg/base/loading.jl:895: - Run `import Pkg; Pkg.add($(repr(String(mod))))` to install the $mod package. julia-1.5.3+dfsg/base/loading.jl-896- """)) ############################################## julia-1.5.3+dfsg/base/loading.jl-947- if oldm !== m julia-1.5.3+dfsg/base/loading.jl:948: @warn "Replacing module `$(key.name)`" julia-1.5.3+dfsg/base/loading.jl-949- end ############################################## julia-1.5.3+dfsg/base/loading.jl-1138- :(const ARGS = $args), julia-1.5.3+dfsg/base/loading.jl:1139: :(eval(x) = $(Expr(:core, :eval))(__anon__, x)), julia-1.5.3+dfsg/base/loading.jl:1140: :(include(x) = $(Expr(:top, :include))(__anon__, x)), julia-1.5.3+dfsg/base/loading.jl:1141: :(include(mapexpr::Function, x) = $(Expr(:top, :include))(mapexpr, __anon__, x)), julia-1.5.3+dfsg/base/loading.jl:1142: :(include($path)))) julia-1.5.3+dfsg/base/loading.jl-1143-end ############################################## julia-1.5.3+dfsg/base/loading.jl-1204- try julia-1.5.3+dfsg/base/loading.jl:1205: Base.include(Base.__toplevel__, $(repr(abspath(input)))) julia-1.5.3+dfsg/base/loading.jl-1206- catch ex ############################################## julia-1.5.3+dfsg/base/logging.jl-270- if !(k isa Symbol) julia-1.5.3+dfsg/base/logging.jl:271: throw(ArgumentError("Expected symbol for key in key value pair `$ex`")) julia-1.5.3+dfsg/base/logging.jl-272- end ############################################## julia-1.5.3+dfsg/base/math.jl-398-for f in (:sinh, :cosh, :tanh, :atan, :asinh, :exp, :expm1) julia-1.5.3+dfsg/base/math.jl:399: @eval ($f)(x::AbstractFloat) = error("not implemented for ", typeof(x)) julia-1.5.3+dfsg/base/math.jl-400-end ############################################## julia-1.5.3+dfsg/base/missing.jl-99- :(real), :(imag), :(sign), :(inv)) julia-1.5.3+dfsg/base/missing.jl:100: @eval ($f)(::Missing) = missing julia-1.5.3+dfsg/base/missing.jl-101-end julia-1.5.3+dfsg/base/missing.jl-102-for f in (:(Base.zero), :(Base.one), :(Base.oneunit)) julia-1.5.3+dfsg/base/missing.jl:103: @eval ($f)(::Type{Missing}) = missing julia-1.5.3+dfsg/base/missing.jl-104- @eval function $(f)(::Type{Union{T, Missing}}) where T ############################################## julia-1.5.3+dfsg/base/missing.jl-147- throw(MissingException("cannot convert a missing value to type $T: use Union{$T, Missing} instead")) julia-1.5.3+dfsg/base/missing.jl:148: ($f)(::Type{T}, x::Any) where {T>:Missing} = $f(nonmissingtype_checked(T), x) julia-1.5.3+dfsg/base/missing.jl-149- # to fix ambiguities julia-1.5.3+dfsg/base/missing.jl:150: ($f)(::Type{T}, x::Rational) where {T>:Missing} = $f(nonmissingtype_checked(T), x) julia-1.5.3+dfsg/base/missing.jl-151- end ############################################## julia-1.5.3+dfsg/base/mpfr.jl-309- (RoundToZero, RoundDown, RoundUp, :(ROUNDING_MODE[]))) julia-1.5.3+dfsg/base/mpfr.jl:310: @eval $f(::Type{T}, x::BigFloat) where T<:Union{Unsigned, Signed, BigInt} = round(T, x, $rnd) julia-1.5.3+dfsg/base/mpfr.jl-311- @eval $f(::Type{Integer}, x::BigFloat) = $f(BigInt, x) ############################################## julia-1.5.3+dfsg/base/pcre.jl-8- julia-1.5.3+dfsg/base/pcre.jl:9:# include($BUILDROOT/base/pcre_h.jl) julia-1.5.3+dfsg/base/pcre.jl-10-include(string(length(Core.ARGS) >= 2 ? Core.ARGS[2] : "", "pcre_h.jl")) ############################################## julia-1.5.3+dfsg/base/pointer.jl-66-unsafe_convert(::Type{Ptr{S}}, a::AbstractArray{T}) where {S,T} = convert(Ptr{S}, unsafe_convert(Ptr{T}, a)) julia-1.5.3+dfsg/base/pointer.jl:67:unsafe_convert(::Type{Ptr{T}}, a::AbstractArray{T}) where {T} = error("conversion to pointer not defined for $(typeof(a))") julia-1.5.3+dfsg/base/pointer.jl-68- ############################################## julia-1.5.3+dfsg/base/reducedim.jl-79-for (Op, initfun) in ((:(typeof(add_sum)), :zero), (:(typeof(mul_prod)), :one)) julia-1.5.3+dfsg/base/reducedim.jl:80: @eval initarray!(a::AbstractArray{T}, ::$(Op), init::Bool, src::AbstractArray) where {T} = (init && fill!(a, $(initfun)(T)); a) julia-1.5.3+dfsg/base/reducedim.jl-81-end ############################################## julia-1.5.3+dfsg/base/regex.jl-85- julia-1.5.3+dfsg/base/regex.jl:86:Construct a regex, such as `r"^[a-z]*\$"`, without interpolation and unescaping (except for julia-1.5.3+dfsg/base/regex.jl-87-quotation mark `"` which still has to be escaped). The regex also accepts one or more flags, ############################################## julia-1.5.3+dfsg/base/regex.jl-221- `match_option` to PCRE. If compile time is amortized, julia-1.5.3+dfsg/base/regex.jl:222: `occursin(r"...\$", s)` is faster than `endswith(s, r"...")`. julia-1.5.3+dfsg/base/regex.jl-223- ############################################## julia-1.5.3+dfsg/base/reinterpretarray.jl-15- @_noinline_meta julia-1.5.3+dfsg/base/reinterpretarray.jl:16: throw(ArgumentError("cannot reinterpret `$(S)` `$(T)`, type `$(U)` is not a bits type")) julia-1.5.3+dfsg/base/reinterpretarray.jl-17- end ############################################## julia-1.5.3+dfsg/base/reinterpretarray.jl-19- @_noinline_meta julia-1.5.3+dfsg/base/reinterpretarray.jl:20: throw(ArgumentError("cannot reinterpret a zero-dimensional `$(S)` array to `$(T)` which is of a different size")) julia-1.5.3+dfsg/base/reinterpretarray.jl-21- end ############################################## julia-1.5.3+dfsg/base/reinterpretarray.jl-24- throw(ArgumentError(""" julia-1.5.3+dfsg/base/reinterpretarray.jl:25: cannot reinterpret an `$(S)` array to `$(T)` whose first dimension has size `$(dim)`. julia-1.5.3+dfsg/base/reinterpretarray.jl-26- The resulting array would have non-integral first dimension. ############################################## julia-1.5.3+dfsg/base/reinterpretarray.jl-30- @_noinline_meta julia-1.5.3+dfsg/base/reinterpretarray.jl:31: throw(ArgumentError("cannot reinterpret a `$(S)` array to `$(T)` when the first axis is $ax1. Try reshaping first.")) julia-1.5.3+dfsg/base/reinterpretarray.jl-32- end ############################################## julia-1.5.3+dfsg/base/shell.jl-99- elseif !in_single_quotes && !in_double_quotes && c in special julia-1.5.3+dfsg/base/shell.jl:100: error("parsing command `$str`: special characters \"$special\" must be quoted in commands") julia-1.5.3+dfsg/base/shell.jl-101- end ############################################## julia-1.5.3+dfsg/base/special/trig.jl-990- $($tname)(x) julia-1.5.3+dfsg/base/special/trig.jl:991: Compute the inverse $($fn) of `x`, where the output is in radians. """ ($tfa)(y::Number) = ($tfainv)(inv(y)) julia-1.5.3+dfsg/base/special/trig.jl-992- @doc """ ############################################## julia-1.5.3+dfsg/base/special/trig.jl-1102- $($name)(x) julia-1.5.3+dfsg/base/special/trig.jl:1103: Compute $($fn) of `x`, where `x` is in degrees. """ ($fd)(z) = ($f)(deg2rad(z)) julia-1.5.3+dfsg/base/special/trig.jl-1104- end ############################################## julia-1.5.3+dfsg/base/special/trig.jl-1113- julia-1.5.3+dfsg/base/special/trig.jl:1114: Compute the inverse $($fn) of `x`, where the output is in degrees. """ ($fd)(y) = rad2deg(($f)(y)) julia-1.5.3+dfsg/base/special/trig.jl-1115- end ############################################## julia-1.5.3+dfsg/base/stat.jl-310-] julia-1.5.3+dfsg/base/stat.jl:311: @eval ($f)(path...) = ($f)(stat(path...)) julia-1.5.3+dfsg/base/stat.jl-312-end ############################################## julia-1.5.3+dfsg/base/strings/unicode.jl-679- julia-1.5.3+dfsg/base/strings/unicode.jl:680:show(io::IO, g::GraphemeIterator{S}) where {S} = print(io, "length-$(length(g)) GraphemeIterator{$S} for \"$(g.s)\"") julia-1.5.3+dfsg/base/strings/unicode.jl-681- ############################################## julia-1.5.3+dfsg/base/util.jl-188- end julia-1.5.3+dfsg/base/util.jl:189: return `$julia -C$cpu_target -J$image_file $addflags` julia-1.5.3+dfsg/base/util.jl-190-end ############################################## julia-1.5.3+dfsg/contrib/fixup-libgfortran.sh-50- # only get something like `@rpath/libgfortran.5.dylib` when inspecting the julia-1.5.3+dfsg/contrib/fixup-libgfortran.sh:51: # libraries. We can, as a last resort, ask `$FC` directly what the full julia-1.5.3+dfsg/contrib/fixup-libgfortran.sh-52- # filepath for this library is, but only if we don't have a direct path to it: ############################################## julia-1.5.3+dfsg/contrib/fixup-libgfortran.sh-69- # search for these libraries in the future. If there is no directory, try julia-1.5.3+dfsg/contrib/fixup-libgfortran.sh:70: # asking `$FC` where such a file could be found. julia-1.5.3+dfsg/contrib/fixup-libgfortran.sh-71- LIBGFORTRAN_DIR="$(find_shlib_dir "$LIBGFORTRAN_PATH")" ############################################## julia-1.5.3+dfsg/contrib/fixup-libgfortran.sh-119-# On OSX, we need to change the old link (which is usually a full path) julia-1.5.3+dfsg/contrib/fixup-libgfortran.sh:120:# to point to `@rpath/${soname}` explicitly, so we use `find_shlib()` julia-1.5.3+dfsg/contrib/fixup-libgfortran.sh-121-# to dynamically find the full path we want to change. On Linux, we julia-1.5.3+dfsg/contrib/fixup-libgfortran.sh:122:# don't care about full paths, we just set the rpath to `$ORIGIN`. julia-1.5.3+dfsg/contrib/fixup-libgfortran.sh-123-change_linkage() ############################################## julia-1.5.3+dfsg/contrib/generate_precompile.jl-170- if !(_pkgid.name in ("Main", "Core", "Base")) julia-1.5.3+dfsg/contrib/generate_precompile.jl:171: eval(PrecompileStagingArea, :(const $(Symbol(_mod)) = $_mod)) julia-1.5.3+dfsg/contrib/generate_precompile.jl-172- end ############################################## julia-1.5.3+dfsg/contrib/mac/framework/Makefile-9-# The codesigning identity on Darwin. julia-1.5.3+dfsg/contrib/mac/framework/Makefile:10:# Used with `codesign -s $(DARWIN_CODESIGN_KEYCHAIN_IDENTITY) $file`. julia-1.5.3+dfsg/contrib/mac/framework/Makefile-11-# The default "-" makes an ad-hoc signature. ############################################## julia-1.5.3+dfsg/contrib/mac/frameworkapp/README.md-14-`/Applications`. Installation may be system-wide (i.e., relative to `/`) or julia-1.5.3+dfsg/contrib/mac/frameworkapp/README.md:15:local to the user's home directory (i.e., `$Home/Appliations/Julia.app`). julia-1.5.3+dfsg/contrib/mac/frameworkapp/README.md-16- ############################################## julia-1.5.3+dfsg/deps/libgit2.mk-33-else julia-1.5.3+dfsg/deps/libgit2.mk:34:LIBGIT2_OPTS += -DBUILD_CLAR=OFF -DDLLTOOL=`which $(CROSS_COMPILE)dlltool` julia-1.5.3+dfsg/deps/libgit2.mk-35-LIBGIT2_OPTS += -DCMAKE_FIND_ROOT_PATH=/usr/$(XC_HOST) -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY ############################################## julia-1.5.3+dfsg/deps/patches/config.sub-52- julia-1.5.3+dfsg/deps/patches/config.sub:53:me=`echo "$0" | sed -e 's,.*/,,'` julia-1.5.3+dfsg/deps/patches/config.sub-54- ############################################## julia-1.5.3+dfsg/deps/patches/config.sub-770- i*86v32) julia-1.5.3+dfsg/deps/patches/config.sub:771: cpu=`echo "$1" | sed -e 's/86.*/86/'` julia-1.5.3+dfsg/deps/patches/config.sub-772- vendor=pc ############################################## julia-1.5.3+dfsg/deps/patches/config.sub-775- i*86v4*) julia-1.5.3+dfsg/deps/patches/config.sub:776: cpu=`echo "$1" | sed -e 's/86.*/86/'` julia-1.5.3+dfsg/deps/patches/config.sub-777- vendor=pc ############################################## julia-1.5.3+dfsg/deps/patches/config.sub-780- i*86v) julia-1.5.3+dfsg/deps/patches/config.sub:781: cpu=`echo "$1" | sed -e 's/86.*/86/'` julia-1.5.3+dfsg/deps/patches/config.sub-782- vendor=pc ############################################## julia-1.5.3+dfsg/deps/patches/config.sub-785- i*86sol2) julia-1.5.3+dfsg/deps/patches/config.sub:786: cpu=`echo "$1" | sed -e 's/86.*/86/'` julia-1.5.3+dfsg/deps/patches/config.sub-787- vendor=pc ############################################## julia-1.5.3+dfsg/deps/patches/config.sub-916- cpu=sparc julia-1.5.3+dfsg/deps/patches/config.sub:917: vendor=`echo "$basic_machine" | sed 's/-.*//'` julia-1.5.3+dfsg/deps/patches/config.sub-918- ;; ############################################## julia-1.5.3+dfsg/deps/patches/config.sub-1082- sh5e[lb]-*) julia-1.5.3+dfsg/deps/patches/config.sub:1083: cpu=`echo "$cpu" | sed 's/^\(sh.\)e\(.\)$/\1\2e/'` julia-1.5.3+dfsg/deps/patches/config.sub-1084- ;; ############################################## julia-1.5.3+dfsg/deps/patches/config.sub-1100- xscale-* | xscalee[bl]-*) julia-1.5.3+dfsg/deps/patches/config.sub:1101: cpu=`echo "$cpu" | sed 's/^xscale/arm/'` julia-1.5.3+dfsg/deps/patches/config.sub-1102- ;; ############################################## julia-1.5.3+dfsg/deps/patches/config.sub-1252- *) julia-1.5.3+dfsg/deps/patches/config.sub:1253: echo Invalid configuration \`"$1"\': machine \`"$cpu-$vendor"\' not recognized 1>&2 julia-1.5.3+dfsg/deps/patches/config.sub-1254- exit 1 ############################################## julia-1.5.3+dfsg/deps/patches/config.sub-1286- solaris1 | solaris1.*) julia-1.5.3+dfsg/deps/patches/config.sub:1287: os=`echo $os | sed -e 's|solaris1|sunos4|'` julia-1.5.3+dfsg/deps/patches/config.sub-1288- ;; ############################################## julia-1.5.3+dfsg/deps/patches/config.sub-1295- gnu/linux*) julia-1.5.3+dfsg/deps/patches/config.sub:1296: os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` julia-1.5.3+dfsg/deps/patches/config.sub-1297- ;; ############################################## julia-1.5.3+dfsg/deps/patches/config.sub-1318- sco3.2.[4-9]*) julia-1.5.3+dfsg/deps/patches/config.sub:1319: os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` julia-1.5.3+dfsg/deps/patches/config.sub-1320- ;; ############################################## julia-1.5.3+dfsg/deps/patches/config.sub-1381- nto*) julia-1.5.3+dfsg/deps/patches/config.sub:1382: os=`echo $os | sed -e 's|nto|nto-qnx|'` julia-1.5.3+dfsg/deps/patches/config.sub-1383- ;; ############################################## julia-1.5.3+dfsg/deps/patches/config.sub-1391- linux*) julia-1.5.3+dfsg/deps/patches/config.sub:1392: os=`echo $os | sed -e 's|linux|linux-gnu|'` julia-1.5.3+dfsg/deps/patches/config.sub-1393- ;; ############################################## julia-1.5.3+dfsg/deps/patches/config.sub-1403- mac*) julia-1.5.3+dfsg/deps/patches/config.sub:1404: os=`echo "$os" | sed -e 's|mac|macos|'` julia-1.5.3+dfsg/deps/patches/config.sub-1405- ;; ############################################## julia-1.5.3+dfsg/deps/patches/config.sub-1412- sunos5*) julia-1.5.3+dfsg/deps/patches/config.sub:1413: os=`echo "$os" | sed -e 's|sunos5|solaris2|'` julia-1.5.3+dfsg/deps/patches/config.sub-1414- ;; julia-1.5.3+dfsg/deps/patches/config.sub-1415- sunos6*) julia-1.5.3+dfsg/deps/patches/config.sub:1416: os=`echo "$os" | sed -e 's|sunos6|solaris3|'` julia-1.5.3+dfsg/deps/patches/config.sub-1417- ;; ############################################## julia-1.5.3+dfsg/deps/patches/config.sub-1452- sinix5.*) julia-1.5.3+dfsg/deps/patches/config.sub:1453: os=`echo $os | sed -e 's|sinix|sysv|'` julia-1.5.3+dfsg/deps/patches/config.sub-1454- ;; ############################################## julia-1.5.3+dfsg/deps/patches/config.sub-1512- *) julia-1.5.3+dfsg/deps/patches/config.sub:1513: echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2 julia-1.5.3+dfsg/deps/patches/config.sub-1514- exit 1 ############################################## julia-1.5.3+dfsg/deps/patches/llvm-8.0-D59389-refactor-wmma.patch-412-+ list<string> reg_names = RegSeq<!size(ptx_regs), "r"#frag>.ret; julia-1.5.3+dfsg/deps/patches/llvm-8.0-D59389-refactor-wmma.patch:413:+ // Generates "{{$r0, $r1,.... $rN-1}}" for use in asm string construction. julia-1.5.3+dfsg/deps/patches/llvm-8.0-D59389-refactor-wmma.patch-414-+ string regstring = "{{$" # !head(reg_names) ############################################## julia-1.5.3+dfsg/deps/patches/llvm-8.0-D59393-mma-ptx63-fix.patch-124-+ julia-1.5.3+dfsg/deps/patches/llvm-8.0-D59393-mma-ptx63-fix.patch:125: // Generates "{{$r0, $r1,.... $rN-1}}" for use in asm string construction. julia-1.5.3+dfsg/deps/patches/llvm-8.0-D59393-mma-ptx63-fix.patch-126- string regstring = "{{$" # !head(reg_names) ############################################## julia-1.5.3+dfsg/deps/patches/llvm-D27629-AArch64-large_model_6.0.1.patch-49-+# Assuming the CIE and the FDE length are both 4 bytes. julia-1.5.3+dfsg/deps/patches/llvm-D27629-AArch64-large_model_6.0.1.patch:50:+# rtdyld-check: *{8}(section_addr(large-reloc.o, .eh_frame) + (*{4}(section_addr(large-reloc.o, .eh_frame))) + 0xc) = g - (section_addr(large-reloc.o, .eh_frame) + (*{4}(section_addr(large-reloc.o, .eh_frame))) + 0xc) julia-1.5.3+dfsg/deps/patches/llvm-D27629-AArch64-large_model_6.0.1.patch-51--- ############################################## julia-1.5.3+dfsg/deps/tools/jlchecksum-22- NUM_LINES=$(( (${#1} + 63) / 64)) julia-1.5.3+dfsg/deps/tools/jlchecksum:23: for i in `seq 0 1 $((NUM_LINES - 1))`; do julia-1.5.3+dfsg/deps/tools/jlchecksum-24- str_piece=$(echo "$1" | awk "{ string=substr(\$0, $((i*64 + 1)), $(((i+1)*64))); print string; }") ############################################## julia-1.5.3+dfsg/deps/tools/jlchecksum-36- print_hash "$TRUE_CHECKSUM" julia-1.5.3+dfsg/deps/tools/jlchecksum:37: echo " But \`$CHECKSUM_PROG\` results in:" >&2 julia-1.5.3+dfsg/deps/tools/jlchecksum-38- print_hash "$CURR_CHECKSUM" ############################################## julia-1.5.3+dfsg/deps/tools/uninstallers.mk-26- @if [ ! -e $(build_prefix)/manifest/$* ] || ( \ julia-1.5.3+dfsg/deps/tools/uninstallers.mk:27: [ "1" != "`wc -w $(build_prefix)/manifest/$* | cut -f 1 -d ' '`" ] && \ julia-1.5.3+dfsg/deps/tools/uninstallers.mk:28: [ "$(UNINSTALL_$*)" != "`cat $(build_prefix)/manifest/$*`" ]) ; then \ julia-1.5.3+dfsg/deps/tools/uninstallers.mk-29- echo "WARNING: using mismatched version for $$(cat $(build_prefix)/manifest/$*):" ; \ ############################################## julia-1.5.3+dfsg/deps/valgrind/valgrind.h-243- complete inline asm, since it needs to be combined with more magic julia-1.5.3+dfsg/deps/valgrind/valgrind.h:244: inline asm stuff to be useful. julia-1.5.3+dfsg/deps/valgrind/valgrind.h-245-*/ ############################################## julia-1.5.3+dfsg/deps/valgrind/valgrind.h-324-#define __SPECIAL_INSTRUCTION_PREAMBLE \ julia-1.5.3+dfsg/deps/valgrind/valgrind.h:325: __asm rol edi, 3 __asm rol edi, 13 \ julia-1.5.3+dfsg/deps/valgrind/valgrind.h:326: __asm rol edi, 29 __asm rol edi, 19 julia-1.5.3+dfsg/deps/valgrind/valgrind.h-327- ############################################## julia-1.5.3+dfsg/deps/valgrind/valgrind.h-349- _zzq_args[5] = (uintptr_t)(_zzq_arg5); julia-1.5.3+dfsg/deps/valgrind/valgrind.h:350: __asm { __asm lea eax, _zzq_args __asm mov edx, _zzq_default julia-1.5.3+dfsg/deps/valgrind/valgrind.h-351- __SPECIAL_INSTRUCTION_PREAMBLE julia-1.5.3+dfsg/deps/valgrind/valgrind.h-352- /* %EDX = client_request ( %EAX ) */ julia-1.5.3+dfsg/deps/valgrind/valgrind.h:353: __asm xchg ebx,ebx julia-1.5.3+dfsg/deps/valgrind/valgrind.h:354: __asm mov _zzq_result, edx julia-1.5.3+dfsg/deps/valgrind/valgrind.h-355- } ############################################## julia-1.5.3+dfsg/deps/valgrind/valgrind.h-361- volatile unsigned int __addr; \ julia-1.5.3+dfsg/deps/valgrind/valgrind.h:362: __asm { __SPECIAL_INSTRUCTION_PREAMBLE \ julia-1.5.3+dfsg/deps/valgrind/valgrind.h-363- /* %EAX = guest_NRADDR */ \ julia-1.5.3+dfsg/deps/valgrind/valgrind.h:364: __asm xchg ecx,ecx \ julia-1.5.3+dfsg/deps/valgrind/valgrind.h:365: __asm mov __addr, eax \ julia-1.5.3+dfsg/deps/valgrind/valgrind.h-366- } \ ############################################## julia-1.5.3+dfsg/deps/valgrind/valgrind.h-373- do { \ julia-1.5.3+dfsg/deps/valgrind/valgrind.h:374: __asm { __SPECIAL_INSTRUCTION_PREAMBLE \ julia-1.5.3+dfsg/deps/valgrind/valgrind.h:375: __asm xchg edi,edi \ julia-1.5.3+dfsg/deps/valgrind/valgrind.h-376- } \ ############################################## julia-1.5.3+dfsg/deps/valgrind/valgrind.h-4680- julia-1.5.3+dfsg/deps/valgrind/valgrind.h:4681:/* Nb: Although r11 is modified in the asm snippets below (inside julia-1.5.3+dfsg/deps/valgrind/valgrind.h-4682- VALGRIND_CFI_PROLOGUE) it is not listed in the clobber section, for ############################################## julia-1.5.3+dfsg/deps/suitesparse.mk-63- $(MAKE) -C $(dir $<)$${PROJ} library $(SUITESPARSE_MFLAGS) || exit 1; \ julia-1.5.3+dfsg/deps/suitesparse.mk:64: $(INSTALL_NAME_CMD)lib`echo $${PROJ} | tr A-Z a-z`.$(SHLIB_EXT) $(dir $<)lib/lib`echo $${PROJ} | tr A-Z a-z`.$(SHLIB_EXT) || exit 1; \ julia-1.5.3+dfsg/deps/suitesparse.mk-65- done ############################################## julia-1.5.3+dfsg/doc/build/build.md-55- julia-1.5.3+dfsg/doc/build/build.md:56:- add the `julia` directory to your executable path for this shell session (in `bash`: `export PATH="$(pwd):$PATH"` ; in `csh` or `tcsh`: julia-1.5.3+dfsg/doc/build/build.md:57:`set path= ( $path $cwd )` ), or julia-1.5.3+dfsg/doc/build/build.md-58- ############################################## julia-1.5.3+dfsg/doc/build/distributing.md-83- julia-1.5.3+dfsg/doc/build/distributing.md:84:By default, Julia loads `$prefix/etc/julia/startup.jl` as an julia-1.5.3+dfsg/doc/build/distributing.md-85-installation-wide initialization file. This file can be used by julia-1.5.3+dfsg/doc/build/distributing.md-86-distribution managers to set up custom paths or initialization code. julia-1.5.3+dfsg/doc/build/distributing.md:87:For Linux distribution packages, if `$prefix` is julia-1.5.3+dfsg/doc/build/distributing.md-88-set to `/usr`, there is no `/usr/etc` to look into. This requires ############################################## julia-1.5.3+dfsg/doc/build/distributing.md-92-check `/etc/julia/startup.jl` before trying julia-1.5.3+dfsg/doc/build/distributing.md:93:`$prefix/etc/julia/startup.jl`. julia-1.5.3+dfsg/doc/build/distributing.md-94- ############################################## julia-1.5.3+dfsg/doc/build/distributing.md-148-performance. To choose an OpenBLAS library whose name is different from julia-1.5.3+dfsg/doc/build/distributing.md:149:the default `libopenblas.so`, pass `LIBBLAS=-l$(YOURBLAS)` and julia-1.5.3+dfsg/doc/build/distributing.md:150:`LIBBLASNAME=lib$(YOURBLAS)` to `make`, replacing `$(YOURBLAS)` with the julia-1.5.3+dfsg/doc/build/distributing.md-151-name of your library. You can also add `.so.0` to the name of the library ############################################## julia-1.5.3+dfsg/doc/build/distributing.md-156-set `USE_SYSTEM_BLAS=1` and `USE_SYSTEM_LAPACK=1`, you should also set julia-1.5.3+dfsg/doc/build/distributing.md:157:`LIBLAPACK=-l$(YOURBLAS)` and `LIBLAPACKNAME=lib$(YOURBLAS)`. Else, the julia-1.5.3+dfsg/doc/build/distributing.md-158-reference LAPACK will be used and performance will typically be much lower. ############################################## julia-1.5.3+dfsg/doc/build/linux.md-20-------------------------|--------------------- julia-1.5.3+dfsg/doc/build/linux.md:21: OpenBLAS build failure | Set one of the following build options in `Make.user` and build again: <ul><li> `OPENBLAS_TARGET_ARCH=BARCELONA` (AMD CPUs) or `OPENBLAS_TARGET_ARCH=NEHALEM` (Intel CPUs)<ul>Set `OPENBLAS_DYNAMIC_ARCH = 0` to disable compiling multiple architectures in a single binary.</ul></li><li> `OPENBLAS_NO_AVX2 = 1` disables AVX2 instructions, allowing OpenBLAS to compile with `OPENBLAS_DYNAMIC_ARCH = 1` using old versions of binutils </li><li> `USE_SYSTEM_BLAS=1` uses the system provided `libblas` <ul><li>Set `LIBBLAS=-lopenblas` and `LIBBLASNAME=libopenblas` to force the use of the system provided OpenBLAS when multiple BLAS versions are installed. </li></ul></li></ul><p> If you get an error that looks like ```../kernel/x86_64/dgemm_kernel_4x4_haswell.S:1709: Error: no such instruction: `vpermpd $ 0xb1,%ymm0,%ymm0'```, then you need to set `OPENBLAS_DYNAMIC_ARCH = 0` or `OPENBLAS_NO_AVX2 = 1`, or you need a newer version of `binutils` (2.18 or newer). ([Issue #7653](https://github.com/JuliaLang/julia/issues/7653))</p><p> If the linker cannot find `gfortran` and you get an error like `julia /usr/bin/x86_64-linux-gnu-ld: cannot find -lgfortran`, check the path with `gfortran -print-file-name=libgfortran.so` and use the output to export something similar to this: `export LDFLAGS=-L/usr/lib/gcc/x86_64-linux-gnu/8/`. See [Issue #6150](https://github.com/JuliaLang/julia/issues/6150#issuecomment-37546803).</p> julia-1.5.3+dfsg/doc/build/linux.md-22-Illegal Instruction error | Check if your CPU supports AVX while your OS does not (e.g. through virtualization, as described in [this issue](https://github.com/JuliaLang/julia/issues/3263)). ############################################## julia-1.5.3+dfsg/doc/src/devdocs/ast.md-98-| `x"y"z` | `(macrocall @x_str (line) "y" "z")` | julia-1.5.3+dfsg/doc/src/devdocs/ast.md:99:| `"x = $x"` | `(string "x = " x)` | julia-1.5.3+dfsg/doc/src/devdocs/ast.md-100-| ``` `a b c` ``` | `(macrocall @cmd (line) "a b c")` | ############################################## julia-1.5.3+dfsg/doc/src/devdocs/debuggingtips.md-35- (or figure out how far into a file has been parsed) julia-1.5.3+dfsg/doc/src/devdocs/debuggingtips.md:36: * `$1` :: not really a variable, but still a useful shorthand for referring to the result of the julia-1.5.3+dfsg/doc/src/devdocs/debuggingtips.md-37- last gdb command (such as `print`) ############################################## julia-1.5.3+dfsg/doc/src/devdocs/debuggingtips.md-43- julia-1.5.3+dfsg/doc/src/devdocs/debuggingtips.md:44: * `jl_gdblookup($rip)` :: For looking up the current function and line. (use `$eip` on i686 platforms) julia-1.5.3+dfsg/doc/src/devdocs/debuggingtips.md-45- * `jlbacktrace()` :: For dumping the current Julia backtrace stack to stderr. Only usable after ############################################## julia-1.5.3+dfsg/doc/src/manual/calling-c-and-fortran-code.md-244- julia-1.5.3+dfsg/doc/src/manual/calling-c-and-fortran-code.md:245:For fun, try inserting a `println("mycompare($a, $b)")` line into `mycompare`, which will allow julia-1.5.3+dfsg/doc/src/manual/calling-c-and-fortran-code.md-246-you to see the comparisons that `qsort` is performing (and to verify that it is really calling ############################################## julia-1.5.3+dfsg/doc/src/manual/code-loading.md-166- - If it has a `path` entry, use that path (relative to the directory containing the manifest file). julia-1.5.3+dfsg/doc/src/manual/code-loading.md:167: - If it has a `git-tree-sha1` entry, compute a deterministic hash function of `uuid` and `git-tree-sha1`—call it `slug`—and look for a directory named `packages/X/$slug` in each directory in the Julia `DEPOT_PATH` global array. Use the first such directory that exists. julia-1.5.3+dfsg/doc/src/manual/code-loading.md-168- ############################################## julia-1.5.3+dfsg/doc/src/manual/distributed-computing.md-1037- julia-1.5.3+dfsg/doc/src/manual/distributed-computing.md:1038:By default a worker will listen on a free port at the address returned by a call to [`getipaddr()`](@ref). julia-1.5.3+dfsg/doc/src/manual/distributed-computing.md-1039-A specific address to listen on may be specified by optional argument `--bind-to bind_addr[:port]`. ############################################## julia-1.5.3+dfsg/doc/src/manual/documentation.md-321-When using string-interpolation within the docstring you will need to use an extra `$` as julia-1.5.3+dfsg/doc/src/manual/documentation.md:322:shown with `$($name)`: julia-1.5.3+dfsg/doc/src/manual/documentation.md-323- ############################################## julia-1.5.3+dfsg/doc/src/manual/embedding.md-39-In order to build this program you have to put the path to the Julia header into the include path julia-1.5.3+dfsg/doc/src/manual/embedding.md:40:and link against `libjulia`. For instance, when Julia is installed to `$JULIA_DIR`, one can compile julia-1.5.3+dfsg/doc/src/manual/embedding.md-41-the above test program `test.c` with `gcc` using: ############################################## julia-1.5.3+dfsg/doc/src/manual/embedding.md-175- julia-1.5.3+dfsg/doc/src/manual/embedding.md:176:Using the project Properties dialog, go to `C/C++` | `General` and add `$(JULIA_DIR)\include\julia\` to the julia-1.5.3+dfsg/doc/src/manual/embedding.md:177:Additional Include Directories property. Then, go to the `Linker` | `General` section and add `$(JULIA_DIR)\lib` julia-1.5.3+dfsg/doc/src/manual/embedding.md-178-to the Additional Library Directories property. Finally, under `Linker` | `Input`, add `libjulia.dll.a;libopenlibm.dll.a;` ############################################## julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-29-The absolute path of the directory containing the Julia executable, which sets julia-1.5.3+dfsg/doc/src/manual/environment-variables.md:30:the global variable [`Sys.BINDIR`](@ref). If `$JULIA_BINDIR` is not set, then julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-31-Julia determines the value `Sys.BINDIR` at run-time. ############################################## julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-142-The absolute path `REPL.find_hist_file()` of the REPL's history file. If julia-1.5.3+dfsg/doc/src/manual/environment-variables.md:143:`$JULIA_HISTORY` is not set, then `REPL.find_hist_file()` defaults to julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-144- ############################################## julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-153-The absolute path of the shell with which Julia should execute external commands julia-1.5.3+dfsg/doc/src/manual/environment-variables.md:154:(via `Base.repl_cmd()`). Defaults to the environment variable `$SHELL`, and julia-1.5.3+dfsg/doc/src/manual/environment-variables.md:155:falls back to `/bin/sh` if `$SHELL` is unset. julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-156- ############################################## julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-166- julia-1.5.3+dfsg/doc/src/manual/environment-variables.md:167:`$JULIA_EDITOR` takes precedence over `$VISUAL`, which in turn takes precedence julia-1.5.3+dfsg/doc/src/manual/environment-variables.md:168:over `$EDITOR`. If none of these environment variables is set, then the editor julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-169-is taken to be `open` on Windows and OS X, or `/etc/alternatives/editor` if it ############################################## julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-187-An unsigned 64-bit integer (`uint64_t`) that sets the maximum number of threads julia-1.5.3+dfsg/doc/src/manual/environment-variables.md:188:available to Julia. If `$JULIA_NUM_THREADS` exceeds the number of available julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-189-physical CPU cores, then the number of threads is set to the number of cores. If julia-1.5.3+dfsg/doc/src/manual/environment-variables.md:190:`$JULIA_NUM_THREADS` is not positive or is not set, or if the number of CPU julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-191-cores cannot be determined through system calls, then the number of threads is ############################################## julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-204-If set to a string that starts with the case-insensitive substring `"infinite"`, julia-1.5.3+dfsg/doc/src/manual/environment-variables.md:205:then spinning threads never sleep. Otherwise, `$JULIA_THREAD_SLEEP_THRESHOLD` is julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-206-interpreted as an unsigned 64-bit integer (`uint64_t`) and gives, in ############################################## julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-271-* If it's the `n`th time that `jl_gc_pool_alloc()` has been called, and `n` julia-1.5.3+dfsg/doc/src/manual/environment-variables.md:272: belongs to the arithmetic sequence represented by `$JULIA_GC_ALLOC_POOL`, julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-273- then garbage collection is forced. julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-274-* If it's the `n`th time that `maybe_collect()` has been called, and `n` belongs julia-1.5.3+dfsg/doc/src/manual/environment-variables.md:275: to the arithmetic sequence represented by `$JULIA_GC_ALLOC_OTHER`, then garbage julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-276- collection is forced. julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-277-* If it's the `n`th time that `jl_gc_collect()` has been called, and `n` belongs julia-1.5.3+dfsg/doc/src/manual/environment-variables.md:278: to the arithmetic sequence represented by `$JULIA_GC_ALLOC_PRINT`, then counts julia-1.5.3+dfsg/doc/src/manual/environment-variables.md-279- for the number of calls to `jl_gc_pool_alloc()` and `maybe_collect()` are ############################################## julia-1.5.3+dfsg/doc/src/manual/faq.md-950- can also be done by setting environment variable `JULIA_DEPOT_PATH` to julia-1.5.3+dfsg/doc/src/manual/faq.md:951: `$private_path:$HOME/.julia`. julia-1.5.3+dfsg/doc/src/manual/faq.md-952-3. Create a symlink from `~/.julia/compiled` to a directory in a scratch space. ############################################## julia-1.5.3+dfsg/doc/src/manual/getting-started.md-14-import Markdown julia-1.5.3+dfsg/doc/src/manual/getting-started.md:15:Markdown.parse("```\n\$ julia\n\n$(banner)\njulia> 1 + 2\n3\n\njulia> ans\n3\n```") julia-1.5.3+dfsg/doc/src/manual/getting-started.md-16-``` ############################################## julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-240-the surrounding expression. julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md:241:This can be done with the syntax `$(xs...)`. julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-242-For example, the following code generates a function call where the number of arguments is ############################################## julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-270- julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md:271:Notice that the result contains `$x`, which means that `x` has not been julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-272-evaluated yet. ############################################## julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-335-```jldoctest interp1 julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md:336:julia> eval(Meta.quot(Expr(:$, :(1+2)))) julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-337-3 julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-338- julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md:339:julia> eval(QuoteNode(Expr(:$, :(1+2)))) julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-340-:($(Expr(:$, :(1 + 2)))) ############################################## julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-722-"a should equal b," we wanted to print their values? One might naively try to use string interpolation julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md:723:in the custom message, e.g., `@assert a==b "a ($a) should equal b ($b)!"`, but this won't work julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-724-as expected with the above macro. Can you see why? Recall from [string interpolation](@ref string-interpolation) that ############################################## julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-849-For example, many macros simply wrap their arguments in a `QuoteNode` or other similar [`Expr`](@ref). julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md:850:Some examples of this include `@task body` which simply returns `schedule(Task(() -> $body))`, julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-851-and `@eval expr`, which simply returns `eval(QuoteNode(expr))`. ############################################## julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-960-for op = (:sin, :cos, :tan, :log, :exp) julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md:961: eval(:(Base.$op(a::MyNumber) = MyNumber($op(a.x)))) julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-962-end ############################################## julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-988- julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md:989: * `r"^\s*(?:#|$)"` produces a regular expression object rather than a string julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-990- * `b"DATA\xff\u2200"` is a byte array literal for `[68,65,84,65,255,226,136,128]`. ############################################## julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-1002- julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md:1003:That's all. This macro says that the literal contents of the string literal `r"^\s*(?:#|$)"` should julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-1004-be passed to the `@r_str` macro and the result of that expansion should be placed in the syntax julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md:1005:tree where the string literal occurs. In other words, the expression `r"^\s*(?:#|$)"` is equivalent julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-1006-to placing the following object directly into the syntax tree: ############################################## julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-1027- julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md:1028:Since the regular expression `r"^\s*(?:#|$)"` is compiled and inserted into the syntax tree when julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-1029-this code is parsed, the expression is only compiled once instead of each time the loop is executed. ############################################## julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-1065-The mechanism for user-defined string literals is deeply, profoundly powerful. Not only are Julia's julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md:1066:non-standard literals implemented using it, but also the command literal syntax (``` `echo "Hello, $person"` ```) julia-1.5.3+dfsg/doc/src/manual/metaprogramming.md-1067-is implemented with the following innocuous-looking macro: ############################################## julia-1.5.3+dfsg/doc/src/manual/noteworthy-differences.md-282- `"` characters without quoting it like `"\""`. String literals can have values of other variables julia-1.5.3+dfsg/doc/src/manual/noteworthy-differences.md:283: or expressions interpolated into them, indicated by `$variablename` or `$(expression)`, which julia-1.5.3+dfsg/doc/src/manual/noteworthy-differences.md-284- evaluates the variable name or the expression in the context of the function. ############################################## julia-1.5.3+dfsg/doc/src/manual/performance-tips.md-815-or thousands of variants compiled for it. Each of these increases the size of the cache of compiled julia-1.5.3+dfsg/doc/src/manual/performance-tips.md:816:code, the length of internal lists of methods, etc. Excess enthusiasm for values-as-parameters julia-1.5.3+dfsg/doc/src/manual/performance-tips.md-817-can easily waste enormous resources. ############################################## julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-84- julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md:85:julia> `sort $file` julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-86-`sort /etc/passwd` ############################################## julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-97- julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md:98:julia> `sort $file` julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-99-`sort '/Volumes/External HD/data.csv'` ############################################## julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-117- julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md:118:julia> `sort $path/$name.$ext` julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-119-`sort '/Volumes/External HD/data.csv'` ############################################## julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-130- julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md:131:julia> `grep foo $files` julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-132-`grep foo /etc/passwd '/Volumes/External HD/data.csv'` ############################################## julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-144- julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md:145:julia> `grep xylophone $names.txt` julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-146-`grep xylophone foo.txt bar.txt baz.txt` ############################################## julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-163- julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md:164:julia> `rm -f $names.$exts` julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-165-`rm -f foo.aux foo.log bar.aux bar.log baz.aux baz.log` ############################################## julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-171-```jldoctest julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md:172:julia> `rm -rf $["foo","bar","baz","qux"].$["aux","log","pdf"]` julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-173-`rm -rf foo.aux foo.log foo.pdf bar.aux bar.log bar.pdf baz.aux baz.log baz.pdf qux.aux qux.log qux.pdf` ############################################## julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-189-The Perl expression needs to be in single quotes for two reasons: so that spaces don't break the julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md:190:expression into multiple shell words, and so that uses of Perl variables like `$|` (yes, that's julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-191-the name of a variable in Perl), don't cause interpolation. In other instances, you may want to ############################################## julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-208-```jldoctest julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md:209:julia> A = `perl -le '$|=1; for (0..3) { print }'` julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md:210:`perl -le '$|=1; for (0..3) { print }'` julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-211- ############################################## julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-219- julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md:220:julia> B = `perl -le 'print for @ARGV' "1: $first" "2: $second"` julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-221-`perl -le 'print for @ARGV' '1: A' '2: B'` ############################################## julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-329-```jldoctest prefixer; filter = r"([A-B] [0-5])" julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md:330:julia> prefixer(prefix, sleep) = `perl -nle '$|=1; print "'$prefix' ", $_; sleep '$sleep';'`; julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-331- julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md:332:julia> run(pipeline(`perl -le '$|=1; for(0..5){ print; sleep 1 }'`, prefixer("A",2) & prefixer("B",2))); julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-333-B 0 ############################################## julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-344-gets the first line is non-deterministic, but once that race has been won, the lines are consumed julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md:345:alternately by one process and then the other. (Setting `$|=1` in Perl causes each print statement julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-346-to flush the [`stdout`](@ref) handle, which is necessary for this example to work. Otherwise all ############################################## julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-351-```jldoctest prefixer; filter = r"[A-B] [X-Z] [0-5]" julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md:352:julia> run(pipeline(`perl -le '$|=1; for(0..5){ print; sleep 1 }'`, julia-1.5.3+dfsg/doc/src/manual/running-external-programs.md-353- prefixer("X",3) & prefixer("Y",3) & prefixer("Z",3), ############################################## julia-1.5.3+dfsg/doc/src/manual/types.md-1344-calling operator is higher than or equal to the precedence of multiplication. This check allows julia-1.5.3+dfsg/doc/src/manual/types.md:1345:expressions which parse correctly without the parentheses (such as `:($a + 2)` and `:($a == 2)`) to julia-1.5.3+dfsg/doc/src/manual/types.md-1346-omit them when printing: ############################################## julia-1.5.3+dfsg/doc/make.jl-173- @eval using $(stdlib.stdlib) julia-1.5.3+dfsg/doc/make.jl:174: # All standard library modules get `using $STDLIB` as their global julia-1.5.3+dfsg/doc/make.jl-175- DocMeta.setdocmeta!(Base.root_module(Base, stdlib.stdlib), :DocTestSetup, :(using $(stdlib.stdlib)), recursive=true) ############################################## julia-1.5.3+dfsg/src/aotcompile.cpp-805- julia-1.5.3+dfsg/src/aotcompile.cpp:806:// --- native code info, and dump function to IR and ASM --- julia-1.5.3+dfsg/src/aotcompile.cpp-807-// Get pointer to llvm::Function instance, compiling if necessary julia-1.5.3+dfsg/src/aotcompile.cpp-808-// for use in reflection from Julia. julia-1.5.3+dfsg/src/aotcompile.cpp:809:// this is paired with jl_dump_function_ir, jl_dump_method_asm, jl_dump_llvm_asm in particular ways: julia-1.5.3+dfsg/src/aotcompile.cpp-810-// misuse will leak memory or cause read-after-free ############################################## julia-1.5.3+dfsg/src/ast.scm-156- (if (eq? (car e) 'elseif) julia-1.5.3+dfsg/src/ast.scm:157: (caddr (cadr e)) julia-1.5.3+dfsg/src/ast.scm-158- (cadr e))) ############################################## julia-1.5.3+dfsg/src/ast.scm-192- (args (cdr (cadr (caddr e)))) julia-1.5.3+dfsg/src/ast.scm:193: (body (caddr (caddr e)))) julia-1.5.3+dfsg/src/ast.scm-194- (deparse-block (string (deparse call) " do" (if (null? args) "" " ") ############################################## julia-1.5.3+dfsg/src/cgmemmgr.cpp-262- julia-1.5.3+dfsg/src/cgmemmgr.cpp:263:ssize_t pwrite_addr(int fd, const void *buf, size_t nbyte, uintptr_t addr) julia-1.5.3+dfsg/src/cgmemmgr.cpp-264-{ ############################################## julia-1.5.3+dfsg/src/cgmemmgr.cpp-319- const uint64_t v = 0xffff000012345678u; julia-1.5.3+dfsg/src/cgmemmgr.cpp:320: int ret = pwrite_addr(fd, (const void*)&v, sizeof(uint64_t), (uintptr_t)test_pg); julia-1.5.3+dfsg/src/cgmemmgr.cpp-321- if (ret != sizeof(uint64_t) || *(volatile uint64_t*)test_pg != v) { ############################################## julia-1.5.3+dfsg/src/cgmemmgr.cpp-338- while (size > 0) { julia-1.5.3+dfsg/src/cgmemmgr.cpp:339: ssize_t ret = pwrite_addr(get_self_mem_fd(), ptr, size, (uintptr_t)dest); julia-1.5.3+dfsg/src/cgmemmgr.cpp-340- if ((size_t)ret == size) ############################################## julia-1.5.3+dfsg/src/cgutils.cpp-354- literal_static_pointer_val(p)); julia-1.5.3+dfsg/src/cgutils.cpp:355: gv->setUnnamedAddr(GlobalValue::UnnamedAddr::Global); julia-1.5.3+dfsg/src/cgutils.cpp-356- return gv; ############################################## julia-1.5.3+dfsg/src/cgutils.cpp-855- julia-1.5.3+dfsg/src/cgutils.cpp:856:static Value *emit_nthptr_addr(jl_codectx_t &ctx, Value *v, ssize_t n, bool gctracked = true) julia-1.5.3+dfsg/src/cgutils.cpp-857-{ ############################################## julia-1.5.3+dfsg/src/cgutils.cpp-863- julia-1.5.3+dfsg/src/cgutils.cpp:864:static Value *emit_nthptr_addr(jl_codectx_t &ctx, Value *v, Value *idx) julia-1.5.3+dfsg/src/cgutils.cpp-865-{ ############################################## julia-1.5.3+dfsg/src/cgutils.cpp-874- // p = (jl_value_t**)v; p[n] julia-1.5.3+dfsg/src/cgutils.cpp:875: Value *vptr = emit_nthptr_addr(ctx, v, n); julia-1.5.3+dfsg/src/cgutils.cpp-876- return tbaa_decorate(tbaa, ctx.builder.CreateLoad(T_prjlvalue, vptr)); ############################################## julia-1.5.3+dfsg/src/cgutils.cpp-881- // p = (jl_value_t**)v; *(ptype)&p[n] julia-1.5.3+dfsg/src/cgutils.cpp:882: Value *vptr = emit_nthptr_addr(ctx, v, idx); julia-1.5.3+dfsg/src/cgutils.cpp-883- return tbaa_decorate(tbaa, ctx.builder.CreateLoad(emit_bitcast(ctx, vptr, ptype))); ############################################## julia-1.5.3+dfsg/src/cgutils.cpp-888- // p = (jl_value_t**)v; *(ptype)&p[n] julia-1.5.3+dfsg/src/cgutils.cpp:889: Value *vptr = emit_nthptr_addr(ctx, v, n); julia-1.5.3+dfsg/src/cgutils.cpp-890- return tbaa_decorate(tbaa, ctx.builder.CreateLoad(emit_bitcast(ctx, vptr, ptype))); ############################################## julia-1.5.3+dfsg/src/cgutils.cpp-2905- // for signal fence. Fallback to the poor man signal fence with julia-1.5.3+dfsg/src/cgutils.cpp:2906: // inline asm instead. julia-1.5.3+dfsg/src/cgutils.cpp-2907- // https://llvm.org/bugs/show_bug.cgi?id=27545 ############################################## julia-1.5.3+dfsg/src/crc32c.c-184- uint32_t eax = 1, ebx, ecx, edx; julia-1.5.3+dfsg/src/crc32c.c:185: asm ( julia-1.5.3+dfsg/src/crc32c.c-186-#if defined(__i386__) && defined(__PIC__) ############################################## julia-1.5.3+dfsg/src/disasm.cpp-773- )); julia-1.5.3+dfsg/src/disasm.cpp:774: assert(MAI && "Unable to create target asm info!"); julia-1.5.3+dfsg/src/disasm.cpp-775- ############################################## julia-1.5.3+dfsg/src/dlload.c-164- Dl_info info; julia-1.5.3+dfsg/src/dlload.c:165: if (!dladdr((void*)(uintptr_t)&jl_load_dynamic_library, &info) || !info.dli_fname) julia-1.5.3+dfsg/src/dlload.c-166- jl_error("could not load base module"); ############################################## julia-1.5.3+dfsg/src/flisp/compiler.lsp-296- (begin (if (cadr (car e)) julia-1.5.3+dfsg/src/flisp/compiler.lsp:297: (emit g 'box (caddr (car e)))) julia-1.5.3+dfsg/src/flisp/compiler.lsp-298- (loop (cdr e)))))) ############################################## julia-1.5.3+dfsg/src/gc-debug.c-599- // scan up to current `sp` for current thread and task julia-1.5.3+dfsg/src/gc-debug.c:600: low = (char*)jl_get_frame_addr(); julia-1.5.3+dfsg/src/gc-debug.c-601- } ############################################## julia-1.5.3+dfsg/src/gc.c-186-{ julia-1.5.3+dfsg/src/gc.c:187: return (uintptr_t)jl_get_frame_addr(); julia-1.5.3+dfsg/src/gc.c-188-} ############################################## julia-1.5.3+dfsg/src/gc.c-1563-// Handle the case where the stack is only partially copied. julia-1.5.3+dfsg/src/gc.c:1564:STATIC_INLINE uintptr_t gc_get_stack_addr(void *_addr, uintptr_t offset, julia-1.5.3+dfsg/src/gc.c-1565- uintptr_t lb, uintptr_t ub) ############################################## julia-1.5.3+dfsg/src/gc.c-1575-{ julia-1.5.3+dfsg/src/gc.c:1576: uintptr_t real_addr = gc_get_stack_addr(_addr, offset, lb, ub); julia-1.5.3+dfsg/src/gc.c-1577- return *(uintptr_t*)real_addr; ############################################## julia-1.5.3+dfsg/src/gc.c-1922-#if defined(__GNUC__) && !defined(_OS_EMSCRIPTEN_) julia-1.5.3+dfsg/src/gc.c:1923:# define gc_mark_laddr(name) (&&name) julia-1.5.3+dfsg/src/gc.c-1924-# define gc_mark_jmp(ptr) goto *(ptr) julia-1.5.3+dfsg/src/gc.c-1925-#else julia-1.5.3+dfsg/src/gc.c:1926:#define gc_mark_laddr(name) ((void*)(uintptr_t)GC_MARK_L_##name) julia-1.5.3+dfsg/src/gc.c-1927-#define gc_mark_jmp(ptr) do { \ ############################################## julia-1.5.3+dfsg/src/gc.c-2025- if (__unlikely(ptls == NULL)) { julia-1.5.3+dfsg/src/gc.c:2026: gc_mark_label_addrs[GC_MARK_L_marked_obj] = gc_mark_laddr(marked_obj); julia-1.5.3+dfsg/src/gc.c:2027: gc_mark_label_addrs[GC_MARK_L_scan_only] = gc_mark_laddr(scan_only); julia-1.5.3+dfsg/src/gc.c:2028: gc_mark_label_addrs[GC_MARK_L_finlist] = gc_mark_laddr(finlist); julia-1.5.3+dfsg/src/gc.c:2029: gc_mark_label_addrs[GC_MARK_L_objarray] = gc_mark_laddr(objarray); julia-1.5.3+dfsg/src/gc.c:2030: gc_mark_label_addrs[GC_MARK_L_array8] = gc_mark_laddr(array8); julia-1.5.3+dfsg/src/gc.c:2031: gc_mark_label_addrs[GC_MARK_L_obj8] = gc_mark_laddr(obj8); julia-1.5.3+dfsg/src/gc.c:2032: gc_mark_label_addrs[GC_MARK_L_obj16] = gc_mark_laddr(obj16); julia-1.5.3+dfsg/src/gc.c:2033: gc_mark_label_addrs[GC_MARK_L_obj32] = gc_mark_laddr(obj32); julia-1.5.3+dfsg/src/gc.c:2034: gc_mark_label_addrs[GC_MARK_L_stack] = gc_mark_laddr(stack); julia-1.5.3+dfsg/src/gc.c:2035: gc_mark_label_addrs[GC_MARK_L_excstack] = gc_mark_laddr(excstack); julia-1.5.3+dfsg/src/gc.c:2036: gc_mark_label_addrs[GC_MARK_L_module_binding] = gc_mark_laddr(module_binding); julia-1.5.3+dfsg/src/gc.c-2037- return; ############################################## julia-1.5.3+dfsg/src/gc.c-2288- gc_mark_marked_obj_t data = {globalref, gr_tag, gr_bits}; julia-1.5.3+dfsg/src/gc.c:2289: gc_mark_stack_push(&ptls->gc_cache, &sp, gc_mark_laddr(marked_obj), julia-1.5.3+dfsg/src/gc.c-2290- &data, sizeof(data), 1); ############################################## julia-1.5.3+dfsg/src/gc.c-2313- gc_mark_objarray_t data = {(jl_value_t*)m, objary_begin, objary_end, 1, binding->nptr}; julia-1.5.3+dfsg/src/gc.c:2314: gc_mark_stack_push(&ptls->gc_cache, &sp, gc_mark_laddr(objarray), julia-1.5.3+dfsg/src/gc.c-2315- &data, sizeof(data), 0); ############################################## julia-1.5.3+dfsg/src/gc.c-2391- gc_mark_objarray_t markdata = {new_obj, objary_begin, objary_end, 1, nptr}; julia-1.5.3+dfsg/src/gc.c:2392: gc_mark_stack_push(&ptls->gc_cache, &sp, gc_mark_laddr(objarray), julia-1.5.3+dfsg/src/gc.c-2393- &markdata, sizeof(markdata), 0); ############################################## julia-1.5.3+dfsg/src/gc.c-2445- gc_mark_objarray_t markdata = {new_obj, objary_begin, objary_end, 1, nptr}; julia-1.5.3+dfsg/src/gc.c:2446: gc_mark_stack_push(&ptls->gc_cache, &sp, gc_mark_laddr(objarray), julia-1.5.3+dfsg/src/gc.c-2447- &markdata, sizeof(markdata), 0); ############################################## julia-1.5.3+dfsg/src/gc.c-2462- gc_mark_objarray_t markdata = {new_obj, objary_begin, objary_end, elsize, nptr}; julia-1.5.3+dfsg/src/gc.c:2463: gc_mark_stack_push(&ptls->gc_cache, &sp, gc_mark_laddr(objarray), julia-1.5.3+dfsg/src/gc.c-2464- &markdata, sizeof(markdata), 0); ############################################## julia-1.5.3+dfsg/src/gc.c-2471- gc_mark_array8_t markdata = {objary_begin, objary_end, obj8_begin, {new_obj, obj8_begin, obj8_end, nptr}}; julia-1.5.3+dfsg/src/gc.c:2472: gc_mark_stack_push(&ptls->gc_cache, &sp, gc_mark_laddr(array8), julia-1.5.3+dfsg/src/gc.c-2473- &markdata, sizeof(markdata), 0); ############################################## julia-1.5.3+dfsg/src/gc.c-2492- gc_mark_binding_t markdata = {m, table + 1, table + bsize, nptr, bits}; julia-1.5.3+dfsg/src/gc.c:2493: gc_mark_stack_push(&ptls->gc_cache, &sp, gc_mark_laddr(module_binding), julia-1.5.3+dfsg/src/gc.c-2494- &markdata, sizeof(markdata), 0); ############################################## julia-1.5.3+dfsg/src/gc.c-2543- gc_mark_stackframe_t stackdata = {s, 0, (uint32_t)nroots, offset, lb, ub}; julia-1.5.3+dfsg/src/gc.c:2544: gc_mark_stack_push(&ptls->gc_cache, &sp, gc_mark_laddr(stack), julia-1.5.3+dfsg/src/gc.c-2545- &stackdata, sizeof(stackdata), 1); ############################################## julia-1.5.3+dfsg/src/gc.c-2550- gc_mark_excstack_t stackdata = {ta->excstack, ta->excstack->top, 0, 0}; julia-1.5.3+dfsg/src/gc.c:2551: gc_mark_stack_push(&ptls->gc_cache, &sp, gc_mark_laddr(excstack), julia-1.5.3+dfsg/src/gc.c-2552- &stackdata, sizeof(stackdata), 1); ############################################## julia-1.5.3+dfsg/src/gc.c-2562- gc_mark_obj8_t markdata = {new_obj, obj8_begin, obj8_end, nptr}; julia-1.5.3+dfsg/src/gc.c:2563: gc_mark_stack_push(&ptls->gc_cache, &sp, gc_mark_laddr(obj8), julia-1.5.3+dfsg/src/gc.c-2564- &markdata, sizeof(markdata), 0); ############################################## julia-1.5.3+dfsg/src/gc.c-2598- gc_mark_obj8_t markdata = {new_obj, obj8_begin, obj8_end, nptr}; julia-1.5.3+dfsg/src/gc.c:2599: gc_mark_stack_push(&ptls->gc_cache, &sp, gc_mark_laddr(obj8), julia-1.5.3+dfsg/src/gc.c-2600- &markdata, sizeof(markdata), 0); ############################################## julia-1.5.3+dfsg/src/gc.c-2609- gc_mark_obj16_t markdata = {new_obj, obj16_begin, obj16_end, nptr}; julia-1.5.3+dfsg/src/gc.c:2610: gc_mark_stack_push(&ptls->gc_cache, &sp, gc_mark_laddr(obj16), julia-1.5.3+dfsg/src/gc.c-2611- &markdata, sizeof(markdata), 0); ############################################## julia-1.5.3+dfsg/src/gc.c-2620- gc_mark_obj32_t markdata = {new_obj, obj32_begin, obj32_end, nptr}; julia-1.5.3+dfsg/src/gc.c:2621: gc_mark_stack_push(&ptls->gc_cache, &sp, gc_mark_laddr(obj32), julia-1.5.3+dfsg/src/gc.c-2622- &markdata, sizeof(markdata), 0); ############################################## julia-1.5.3+dfsg/src/init.c-597- if (jl_options.outputasm) julia-1.5.3+dfsg/src/init.c:598: jl_options.outputasm = abspath(jl_options.outputasm, 0); julia-1.5.3+dfsg/src/init.c-599- if (jl_options.machine_file) ############################################## julia-1.5.3+dfsg/src/jitlayers.cpp-54- GV->setLinkage(GlobalValue::PrivateLinkage); julia-1.5.3+dfsg/src/jitlayers.cpp:55: GV->setUnnamedAddr(GlobalValue::UnnamedAddr::Global); julia-1.5.3+dfsg/src/jitlayers.cpp-56-} ############################################## julia-1.5.3+dfsg/src/jl_uv.c-750- julia-1.5.3+dfsg/src/jl_uv.c:751:JL_DLLEXPORT struct sockaddr_in *jl_uv_interface_address_sockaddr(uv_interface_address_t *ifa) julia-1.5.3+dfsg/src/jl_uv.c-752-{ ############################################## julia-1.5.3+dfsg/src/jlapi.c-91- Dl_info dlinfo; julia-1.5.3+dfsg/src/jlapi.c:92: if (dladdr((void*)jl_init, &dlinfo) != 0 && dlinfo.dli_fname) { julia-1.5.3+dfsg/src/jlapi.c-93- char *to_free = strdup(dlinfo.dli_fname); ############################################## julia-1.5.3+dfsg/src/jloptions.c-161- " --output-bc name Generate LLVM bitcode (.bc)\n" julia-1.5.3+dfsg/src/jloptions.c:162: " --output-asm name Generate an assembly file (.s)\n" julia-1.5.3+dfsg/src/jloptions.c-163- " --output-incremental=no Generate an incremental output file (rather than complete)\n" ############################################## julia-1.5.3+dfsg/src/jloptions.c-237- { "output-o", required_argument, 0, opt_output_o }, julia-1.5.3+dfsg/src/jloptions.c:238: { "output-asm", required_argument, 0, opt_output_asm }, julia-1.5.3+dfsg/src/jloptions.c-239- { "output-ji", required_argument, 0, opt_output_ji }, ############################################## julia-1.5.3+dfsg/src/jloptions.c-555- case opt_output_asm: julia-1.5.3+dfsg/src/jloptions.c:556: jl_options.outputasm = optarg; julia-1.5.3+dfsg/src/jloptions.c-557- if (!jl_options.image_file_specified) jl_options.image_file = NULL; ############################################## julia-1.5.3+dfsg/src/julia-syntax.scm-190- (cons (check-sym (cadddr e)) julia-1.5.3+dfsg/src/julia-syntax.scm:191: (cond ((and (eq? (caddr e) '|<:|) (eq? (caddr (cddr e)) '|<:|)) julia-1.5.3+dfsg/src/julia-syntax.scm-192- (list (cadr e) (last e))) ############################################## julia-1.5.3+dfsg/src/julia-syntax.scm-235- (map (lambda (a) ;; extract T from (= v (call (core TypeVar) (quote T) ...)) julia-1.5.3+dfsg/src/julia-syntax.scm:236: (cadr (caddr (caddr a)))) julia-1.5.3+dfsg/src/julia-syntax.scm-237- (filter (lambda (e) ############################################## julia-1.5.3+dfsg/src/julia-syntax.scm-1225- (loop (cdr binds) julia-1.5.3+dfsg/src/julia-syntax.scm:1226: (if (expr-contains-p (lambda (x) (memq x vars)) (caddr (car binds))) julia-1.5.3+dfsg/src/julia-syntax.scm-1227- ;; use more careful lowering if there are name conflicts. issue #25652 ############################################## julia-1.5.3+dfsg/src/julia-syntax.scm-1229- `(block julia-1.5.3+dfsg/src/julia-syntax.scm:1230: (= ,temp ,(caddr (car binds))) julia-1.5.3+dfsg/src/julia-syntax.scm-1231- (scope-block ############################################## julia-1.5.3+dfsg/src/julia-syntax.scm-2998- () julia-1.5.3+dfsg/src/julia-syntax.scm:2999: ,(caddr (lam:vinfo lam)) julia-1.5.3+dfsg/src/julia-syntax.scm-3000- ,(delete-duplicates (append (lam:sp lam) capt-sp))) ############################################## julia-1.5.3+dfsg/src/julia-syntax.scm-3572- (if iskw julia-1.5.3+dfsg/src/julia-syntax.scm:3573: (caddr (lam:args lam2)) julia-1.5.3+dfsg/src/julia-syntax.scm-3574- (car (lam:args lam2))) ############################################## julia-1.5.3+dfsg/src/julia_internal.h-1104- julia-1.5.3+dfsg/src/julia_internal.h:1105:STATIC_INLINE void *jl_get_frame_addr(void) julia-1.5.3+dfsg/src/julia_internal.h-1106-{ ############################################## julia-1.5.3+dfsg/src/julia_threads.h-17-// Options for task switching algorithm (in order of preference): julia-1.5.3+dfsg/src/julia_threads.h:18:// JL_HAVE_ASM -- mostly setjmp julia-1.5.3+dfsg/src/julia_threads.h-19-// JL_HAVE_ASYNCIFY -- task switching based on the binaryen asyncify transform ############################################## julia-1.5.3+dfsg/src/macroexpand.scm-27- (cadr x)) julia-1.5.3+dfsg/src/macroexpand.scm:28: ;; in e.g. `quote quote $$(x...) end end` multiple expressions can be julia-1.5.3+dfsg/src/macroexpand.scm-29- ;; spliced into `$`, which then need to be spliced into the enclosing ############################################## julia-1.5.3+dfsg/src/macroexpand.scm-403- (unescape (cadr (cadr e)))) julia-1.5.3+dfsg/src/macroexpand.scm:404: ,(resolve-expansion-vars- (caddr (cadr e)) env m parent-scope inarg)) julia-1.5.3+dfsg/src/macroexpand.scm-405- ,(resolve-expansion-vars-with-new-env (caddr e) env m parent-scope inarg))) ############################################## julia-1.5.3+dfsg/src/match.scm-111- (eq? (car (car p)) '--)))) julia-1.5.3+dfsg/src/match.scm:112: (let ((subp (if capt? (caddr (car p)) (car p))) julia-1.5.3+dfsg/src/match.scm-113- (var (if capt? (cadr (car p)) #f))) ############################################## julia-1.5.3+dfsg/src/processor_arm.cpp-1768- uint32_t fpcr; julia-1.5.3+dfsg/src/processor_arm.cpp:1769: asm volatile("mrs %0, fpcr" : "=r"(fpcr)); julia-1.5.3+dfsg/src/processor_arm.cpp-1770- return fpcr; ############################################## julia-1.5.3+dfsg/src/processor_arm.cpp-1774-{ julia-1.5.3+dfsg/src/processor_arm.cpp:1775: asm volatile("msr fpcr, %0" :: "r"(fpcr)); julia-1.5.3+dfsg/src/processor_arm.cpp-1776-} ############################################## julia-1.5.3+dfsg/src/processor_x86.cpp-11-#else julia-1.5.3+dfsg/src/processor_x86.cpp:12: asm volatile ( julia-1.5.3+dfsg/src/processor_x86.cpp-13-#if defined(__i386__) && defined(__PIC__) ############################################## julia-1.5.3+dfsg/src/processor_x86.cpp-34-#else julia-1.5.3+dfsg/src/processor_x86.cpp:35: asm volatile ( julia-1.5.3+dfsg/src/processor_x86.cpp-36-#if defined(__i386__) && defined(__PIC__) ############################################## julia-1.5.3+dfsg/src/processor_x86.cpp-299- uint32_t eax, edx; julia-1.5.3+dfsg/src/processor_x86.cpp:300: asm volatile ("xgetbv" : "=a" (eax), "=d" (edx) : "c" (0)); julia-1.5.3+dfsg/src/processor_x86.cpp-301- return (uint64_t(edx) << 32) | eax; ############################################## julia-1.5.3+dfsg/src/staticdata.c-229- Dl_info dlinfo; julia-1.5.3+dfsg/src/staticdata.c:230: if (dladdr((void*)sysimg_gvars_base, &dlinfo) != 0) { julia-1.5.3+dfsg/src/staticdata.c-231- sysimage_base = (intptr_t)dlinfo.dli_fbase; ############################################## julia-1.5.3+dfsg/src/task.c-112-{ julia-1.5.3+dfsg/src/task.c:113: char *frame_addr = (char*)((uintptr_t)jl_get_frame_addr() & ~15); julia-1.5.3+dfsg/src/task.c-114- char *stackbase = (char*)ptls->stackbase; ############################################## julia-1.5.3+dfsg/src/task.c-673- // to call directly into our personality handler julia-1.5.3+dfsg/src/task.c:674: asm volatile ("\t.seh_handler __julia_personality, @except\n\t.text"); julia-1.5.3+dfsg/src/task.c-675-#endif ############################################## julia-1.5.3+dfsg/src/task.c-873-#ifdef _CPU_X86_64_ julia-1.5.3+dfsg/src/task.c:874: asm volatile ( julia-1.5.3+dfsg/src/task.c-875- " movq %0, %%rsp;\n" ############################################## julia-1.5.3+dfsg/src/task.c-882-#elif defined(_CPU_X86_) julia-1.5.3+dfsg/src/task.c:883: asm volatile ( julia-1.5.3+dfsg/src/task.c-884- " movl %0, %%esp;\n" ############################################## julia-1.5.3+dfsg/src/task.c-891-#elif defined(_CPU_AARCH64_) julia-1.5.3+dfsg/src/task.c:892: asm volatile( julia-1.5.3+dfsg/src/task.c-893- " mov sp, %0;\n" ############################################## julia-1.5.3+dfsg/src/task.c-912- // correct version of the ABI reference when working on this code. julia-1.5.3+dfsg/src/task.c:913: asm volatile( julia-1.5.3+dfsg/src/task.c-914- // Move stack (-0x30 for initial stack frame) to stack pointer ############################################## julia-1.5.3+dfsg/src/task.c-932-#else julia-1.5.3+dfsg/src/task.c:933:#error JL_HAVE_ASM defined but not implemented for this CPU type julia-1.5.3+dfsg/src/task.c-934-#endif ############################################## julia-1.5.3+dfsg/src/task.c-1144- (unsigned)GetCurrentThreadId(), julia-1.5.3+dfsg/src/task.c:1145: jl_get_frame_addr(), julia-1.5.3+dfsg/src/task.c-1146- (void*)gs8, (void*)gs16, (void*)gs0); ############################################## julia-1.5.3+dfsg/src/task.c-1152- (unsigned)GetCurrentThreadId(), julia-1.5.3+dfsg/src/task.c:1153: jl_get_frame_addr(), julia-1.5.3+dfsg/src/task.c-1154- (void*)fs4, (void*)fs8, (void*)fs0); ############################################## julia-1.5.3+dfsg/src/task.c-1169- (unsigned)GetCurrentThreadId(), julia-1.5.3+dfsg/src/task.c:1170: jl_get_frame_addr()); julia-1.5.3+dfsg/src/task.c-1171-#endif ############################################## julia-1.5.3+dfsg/src/debuginfo.cpp-861- JL_LOCK_NOGC(&jl_in_stackwalk); julia-1.5.3+dfsg/src/debuginfo.cpp:862: if (SymFromAddr(GetCurrentProcess(), dwAddress, &dwDisplacement64, pSymbol)) { julia-1.5.3+dfsg/src/debuginfo.cpp-863- // errors are ignored ############################################## julia-1.5.3+dfsg/src/debuginfo.cpp-1137-#else julia-1.5.3+dfsg/src/debuginfo.cpp:1138: dladdr_success = dladdr((void*)pointer, &dlinfo) != 0; julia-1.5.3+dfsg/src/debuginfo.cpp-1139-#endif ############################################## julia-1.5.3+dfsg/src/Makefile-54-SRCS += codegen llvm-ptls julia-1.5.3+dfsg/src/Makefile:55:RUNTIME_SRCS += jitlayers aotcompile debuginfo disasm llvm-simdloop llvm-muladd \ julia-1.5.3+dfsg/src/Makefile-56- llvm-final-gc-lowering llvm-pass-helpers llvm-late-gc-lowering \ ############################################## julia-1.5.3+dfsg/src/codegen.cpp-624- name); julia-1.5.3+dfsg/src/codegen.cpp:625: gv->setUnnamedAddr(GlobalValue::UnnamedAddr::Global); julia-1.5.3+dfsg/src/codegen.cpp-626- return gv; ############################################## julia-1.5.3+dfsg/stdlib/Dates/src/periods.jl-28- period in (:Hour, :Minute, :Second, :Millisecond) ? ["Time", "DateTime"] : ["Date", "DateTime"] julia-1.5.3+dfsg/stdlib/Dates/src/periods.jl:29: reference = period === :Week ? " For details see [`$accessor_str(::Union{Date, DateTime})`](@ref)." : "" julia-1.5.3+dfsg/stdlib/Dates/src/periods.jl-30- for typ_str in typs ############################################## julia-1.5.3+dfsg/stdlib/Dates/src/periods.jl-34- julia-1.5.3+dfsg/stdlib/Dates/src/periods.jl:35: The $($accessor_str) part of a $($typ_str) as a `$($period_str)`.$($reference) julia-1.5.3+dfsg/stdlib/Dates/src/periods.jl-36- """ $period(dt::$(Symbol(typ_str))) = $period($(Symbol(accessor_str))(dt)) ############################################## julia-1.5.3+dfsg/stdlib/Dates/src/periods.jl-42- julia-1.5.3+dfsg/stdlib/Dates/src/periods.jl:43: Construct a `$($period_str)` object with the given `v` value. Input must be julia-1.5.3+dfsg/stdlib/Dates/src/periods.jl-44- losslessly convertible to an [`Int64`](@ref). ############################################## julia-1.5.3+dfsg/stdlib/Dates/src/periods.jl-77-for op in (:+, :-, :lcm, :gcd) julia-1.5.3+dfsg/stdlib/Dates/src/periods.jl:78: @eval ($op)(x::P, y::P) where {P<:Period} = P(($op)(value(x), value(y))) julia-1.5.3+dfsg/stdlib/Dates/src/periods.jl-79-end ############################################## julia-1.5.3+dfsg/stdlib/Dates/src/periods.jl-87- @eval begin julia-1.5.3+dfsg/stdlib/Dates/src/periods.jl:88: ($op)(x::P, y::P) where {P<:Period} = P(($op)(value(x), value(y))) julia-1.5.3+dfsg/stdlib/Dates/src/periods.jl:89: ($op)(x::P, y::Real) where {P<:Period} = P(($op)(value(x), Int64(y))) julia-1.5.3+dfsg/stdlib/Dates/src/periods.jl-90- end ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-22- * `count` -- the number of workers to be launched on the host julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl:23: * `exename` -- the path to the Julia executable on the host, defaults to `"\$(Sys.BINDIR)/julia"` or julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl:24: `"\$(Sys.BINDIR)/julia-debug"` julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-25- * `exeflags` -- flags to use when lauching Julia remotely ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-547- exeflags = something(fromconfig.exeflags, ``) julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl:548: cmd = `$exename $exeflags` julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-549- ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-789- julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl:790:get_bind_addr(pid::Integer) = get_bind_addr(worker_from_id(pid)) julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl:791:get_bind_addr(w::LocalProcess) = LPROC.bind_addr julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl:792:function get_bind_addr(w::Worker) julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-793- if w.config.bind_addr === nothing ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-939- else julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl:940: ipatpid = get_bind_addr(pid) julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl:941: Int[x.id for x in filter(w -> get_bind_addr(w) == ipatpid, all_workers)] julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-942- end ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-1207- julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl:1208:wp_bind_addr(p::LocalProcess) = p.bind_addr julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl:1209:wp_bind_addr(p) = p.config.bind_addr julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-1210- ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-1220- else julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl:1221: first_bind_addr = notnothing(wp_bind_addr(map_pid_wrkr[pids[1]])) julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl:1222: return all(p -> notnothing(wp_bind_addr(map_pid_wrkr[p])) == first_bind_addr, pids[2:end]) julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-1223- end ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-1246-# initialize the local proc network address / port julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl:1247:function init_bind_addr() julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-1248- opts = JLOptions() ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-1259- try julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl:1260: bind_addr = string(getipaddr()) julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-1261- catch ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-1280- atexit(terminate_all_workers) julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl:1281: init_bind_addr() julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-1282- cluster_cookie(randstring(HDR_COOKIE_LEN)) ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-1314- # Propagate --threads to workers julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl:1315: exeflags = opts.nthreads > 0 ? `--threads=$(opts.nthreads)` : `` julia-1.5.3+dfsg/stdlib/Distributed/src/cluster.jl-1316- ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/clusterserialize.jl-290-clear_impl!(syms, mod::Module) = foreach(x->clear_impl!(x,mod), syms) julia-1.5.3+dfsg/stdlib/Distributed/src/clusterserialize.jl:291:clear_impl!(sym::Symbol, mod::Module) = isdefined(mod, sym) && @eval(mod, global $sym = nothing) ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/macros.jl-184- foo = 1 julia-1.5.3+dfsg/stdlib/Distributed/src/macros.jl:185: @everywhere bar = \$foo julia-1.5.3+dfsg/stdlib/Distributed/src/macros.jl-186- ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-86- julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl:87:* `exename`: name of the `julia` executable. Defaults to `"\$(Sys.BINDIR)/julia"` or julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl:88: `"\$(Sys.BINDIR)/julia-debug"` as the case may be. julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-89- ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-200- if length(machine_bind) > 1 julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl:201: exeflags = `--bind-to $(machine_bind[2]) $exeflags` julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-202- end julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl:203: exeflags = `$exeflags --worker` julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-204- julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-205- host, portnum = parse_machine(machine_bind[1]) julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl:206: portopt = portnum === nothing ? `` : `-p $portnum` julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl:207: sshflags = `$(params[:sshflags]) $portopt` julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-208- ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-213- # go to background and hang. This is because of OpenSSH implementation. julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl:214: if success(`ssh $sshflags -O check $host`) julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-215- multiplex = true ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-218- controlpath = "~/.ssh/julia-%r@%h:%p" julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl:219: sshflags = `$sshflags -o ControlMaster=auto -o ControlPath=$controlpath -o ControlPersist=no` julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-220- end ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-234- # shell login (-l) with string command (-c) to launch julia process julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl:235: cmd = `sh -l -c $cmds` julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-236- ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-242- # forwarded connections are causing collisions julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl:243: cmd = `ssh -T -a -x -o ClearAllForwardings=yes $sshflags $host $(shell_escape_posixly(cmd))` julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-244- ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-276- sshflags = notnothing(config.sshflags) julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl:277: if !success(`ssh -T -a -x -o ClearAllForwardings=yes -n $sshflags $host "kill -2 $ospid"`) julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-278- @error "Error sending a Ctrl-C to julia worker $id on $host" ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-315- # It assumes that an ssh multiplexing session has been already started by the remote worker. julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl:316: cmd = `ssh $sshflags -O forward -L $localport:$bind_addr:$port $user@$host` julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-317- else ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-324- ssh = `ssh -T -a -x -o ExitOnForwardFailure=yes` julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl:325: cmd = detach(`$ssh -f $sshflags $user@$host -L $localport:$bind_addr:$port sleep 60`) julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-326- end ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-374- exeflags = params[:exeflags] julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl:375: bind_to = manager.restrict ? `127.0.0.1` : `$(LPROC.bind_addr)` julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-376- julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-377- for i in 1:manager.np julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl:378: cmd = `$(julia_cmd(exename)) $exeflags --bind-to $bind_to --worker` julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-379- io = open(detach(setenv(cmd, dir=dir)), "r+") ############################################## julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-582- forward = notnothing(config.forward) julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl:583: run(`ssh $sshflags -O cancel -L $forward $host`) julia-1.5.3+dfsg/stdlib/Distributed/src/managers.jl-584- end ############################################## julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-695- hosts=[] julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl:696: localhost_aliases = ["localhost", string(getipaddr()), "127.0.0.1"] julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-697- num_workers = parse(Int,(get(ENV, "JULIA_ADDPROCS_NUM", "9"))) ############################################## julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-735- h3 = "$h2:22" julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl:736: h4 = "$h3 $(string(getipaddr()))" julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-737- h5 = "$h4:9300" ############################################## julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-743- print("\nkeyword arg exename\n") julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl:744: for exename in [`$(joinpath(Sys.BINDIR, Base.julia_exename()))`, "$(joinpath(Sys.BINDIR, Base.julia_exename()))"] julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-745- for addp_func in [()->addprocs_with_testenv(["localhost"]; exename=exename, exeflags=test_exeflags, sshflags=sshflags), ############################################## julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-1143- julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl:1144: cmd = `$(Base.julia_cmd(exename)) --startup-file=no` julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-1145- if manager.mode == :timeout julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl:1146: cmd = `$cmd -e "sleep(10)"` julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-1147- elseif manager.mode == :ntries julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl:1148: cmd = `$cmd -e "[println(x) for x in 1:1001]"` julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-1149- elseif manager.mode == :exit julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl:1150: cmd = `$cmd -e "exit(-1)"` julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-1151- else ############################################## julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-1421- sym = Symbol(symstr) julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl:1422: eval(:(global $sym = rand())) julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-1423- for p in pids julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl:1424: eval(:(@test $sym == remotecall_fetch(()->$sym, $p))) julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl:1425: eval(:(@test remotecall_fetch(isdefined, $p, Main, Symbol($symstr)))) julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-1426- end ############################################## julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-1512- julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl:1513: cmd = `$exename $exeflags --bind-to $(Distributed.LPROC.bind_addr) $(manager.worker_opt)` julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-1514- cmd = pipeline(detach(setenv(cmd, dir=dir))) ############################################## julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-1553- jlcmd = "using Distributed; start_worker(\"\"; close_stdin=$(manager.close_stdin), stderr_to_stdout=$(manager.stderr_to_stdout));" julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl:1554: cmd = detach(setenv(`$exename $exeflags --bind-to $(Distributed.LPROC.bind_addr) -e $jlcmd`, dir=dir)) julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-1555- proc = open(cmd, "r+") ############################################## julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-1649- """ julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl:1650: @test success(`$(Base.julia_cmd()) --startup-file=no -e $code`) julia-1.5.3+dfsg/stdlib/Distributed/test/distributed_exec.jl-1651-end ############################################## julia-1.5.3+dfsg/stdlib/Distributed/test/runtests.jl-7- julia-1.5.3+dfsg/stdlib/Distributed/test/runtests.jl:8:cmd = `$test_exename $test_exeflags $disttestfile` julia-1.5.3+dfsg/stdlib/Distributed/test/runtests.jl-9- ############################################## julia-1.5.3+dfsg/stdlib/Distributed/test/splitrange.jl-26-const BASE_TEST_PATH = joinpath(Sys.BINDIR, "..", "share", "julia", "test") julia-1.5.3+dfsg/stdlib/Distributed/test/splitrange.jl:27:isdefined(Main, :OffsetArrays) || @eval Main include(joinpath($(BASE_TEST_PATH), "testhelpers", "OffsetArrays.jl")) julia-1.5.3+dfsg/stdlib/Distributed/test/splitrange.jl-28-using .Main.OffsetArrays ############################################## julia-1.5.3+dfsg/stdlib/Distributed/test/topology.jl-45- julia-1.5.3+dfsg/stdlib/Distributed/test/topology.jl:46: cmd = `$exename $exeflags --bind-to $(Distributed.LPROC.bind_addr) --worker` julia-1.5.3+dfsg/stdlib/Distributed/test/topology.jl-47- cmd = pipeline(detach(setenv(cmd, dir=dir))) ############################################## julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/InteractiveUtils.jl-71- if Sys.iswindows() julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/InteractiveUtils.jl:72: try lsb = strip(read(`$(ENV["COMSPEC"]) /c ver`, String)); catch; end julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/InteractiveUtils.jl-73- end ############################################## julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/clipboard.jl-50- for cmd in (:xclip, :xsel) julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/clipboard.jl:51: success(pipeline(`which $cmd`, devnull)) && return _clipboardcmd = cmd julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/clipboard.jl-52- end ############################################## julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-54- julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl:55: (cmd, path, line) -> `\$cmd \$path` julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-56- ############################################## julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-81- r"\\bemacs\\b.*\\s(-nw|--no-window-system)\\b", wait=true) do cmd, path, line julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl:82: `\$cmd +\$line \$path` julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-83- end ############################################## julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-114- define_editor(r".*") do cmd, path, line julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl:115: `$cmd $path` julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-116- end julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-117- define_editor([r"\bemacs", "gedit", r"\bgvim"]) do cmd, path, line julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl:118: `$cmd +$line $path` julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-119- end ############################################## julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-124- r"\bemacsclient\b.\s*-(-?nw|t|-?tty)\b"], wait=true) do cmd, path, line julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl:125: `$cmd +$line $path` julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-126- end julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-127- define_editor(["textmate", "mate", "kate"]) do cmd, path, line julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl:128: `$cmd $path -l $line` julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-129- end julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-130- define_editor([r"\bsubl", r"\batom", "pycharm", "bbedit"]) do cmd, path, line julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl:131: `$cmd $path:$line` julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-132- end julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-133- define_editor(["code", "code-insiders"]) do cmd, path, line julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl:134: `$cmd -g $path:$line` julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-135- end julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-136- define_editor(r"\bnotepad++") do cmd, path, line julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl:137: `$cmd $path -n$line` julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-138- end ############################################## julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-140- define_editor(r"\bCODE\.EXE\b"i) do cmd, path, line julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl:141: `$cmd -g $path:$line` julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-142- end ############################################## julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-157- define_editor("open") do cmd, path, line julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl:158: `open -t $path` julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-159- end ############################################## julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-237- end julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl:238: run(Cmd(`$pager +$(line)$(g) \"$file\"`, windows_verbatim = true)) julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-239- nothing ############################################## julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-243- pager = shell_split(get(ENV, "PAGER", "less")) julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl:244: run(`$pager +$(line)g $file`) julia-1.5.3+dfsg/stdlib/InteractiveUtils/src/editless.jl-245- nothing ############################################## julia-1.5.3+dfsg/stdlib/InteractiveUtils/test/runtests.jl-194- end julia-1.5.3+dfsg/stdlib/InteractiveUtils/test/runtests.jl:195: let exename = `$(Base.julia_cmd()) --startup-file=no` julia-1.5.3+dfsg/stdlib/InteractiveUtils/test/runtests.jl:196: @test !occursin("Environment:", read(setenv(`$exename -e 'using InteractiveUtils; versioninfo()'`, julia-1.5.3+dfsg/stdlib/InteractiveUtils/test/runtests.jl-197- String[]), String)) julia-1.5.3+dfsg/stdlib/InteractiveUtils/test/runtests.jl:198: @test occursin("Environment:", read(setenv(`$exename -e 'using InteractiveUtils; versioninfo()'`, julia-1.5.3+dfsg/stdlib/InteractiveUtils/test/runtests.jl-199- String["JULIA_CPU_THREADS=1"]), String)) ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/src/LibGit2.jl-434- close(cmt) julia-1.5.3+dfsg/stdlib/LibGit2/src/LibGit2.jl:435: new_branch_ref === nothing && throw(GitError(Error.Object, Error.ERROR, "cannot create branch `$branch_name` with `$commit_id`")) julia-1.5.3+dfsg/stdlib/LibGit2/src/LibGit2.jl-436- branch_ref = new_branch_ref ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/src/consts.jl-361- * `CONFIG_LEVEL_GLOBAL` - User-specific configuration file (also called Global configuration file); typically `~/.gitconfig` julia-1.5.3+dfsg/stdlib/LibGit2/src/consts.jl:362: * `CONFIG_LEVEL_LOCAL` - Repository specific configuration file; `\$WORK_DIR/.git/config` on non-bare repos julia-1.5.3+dfsg/stdlib/LibGit2/src/consts.jl-363- * `CONFIG_LEVEL_APP` - Application specific configuration file; freely defined by applications ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/src/consts.jl-383- * `CONFIG_LEVEL_GLOBAL` - User-specific configuration file (also called Global configuration file); typically `~/.gitconfig` julia-1.5.3+dfsg/stdlib/LibGit2/src/consts.jl:384: * `CONFIG_LEVEL_LOCAL` - Repository specific configuration file; `\$WORK_DIR/.git/config` on non-bare repos julia-1.5.3+dfsg/stdlib/LibGit2/src/consts.jl-385- * `CONFIG_LEVEL_APP` - Application specific configuration file; freely defined by applications ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/src/gitcredential.jl-170- julia-1.5.3+dfsg/stdlib/LibGit2/src/gitcredential.jl:171: GitCredentialHelper(`$(Base.shell_split(cmd_str))`) julia-1.5.3+dfsg/stdlib/LibGit2/src/gitcredential.jl-172-end ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/src/gitcredential.jl-178-function run!(helper::GitCredentialHelper, operation::AbstractString, cred::GitCredential) julia-1.5.3+dfsg/stdlib/LibGit2/src/gitcredential.jl:179: cmd = `$(helper.cmd) $operation` julia-1.5.3+dfsg/stdlib/LibGit2/src/gitcredential.jl-180- p = open(cmd, "r+") ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/src/repository.jl-130- julia-1.5.3+dfsg/stdlib/LibGit2/src/repository.jl:131:Return a `$T` object from `repo` specified by `hash`/`spec`. julia-1.5.3+dfsg/stdlib/LibGit2/src/repository.jl-132- ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-9-const BASE_TEST_PATH = joinpath(Sys.BINDIR, "..", "share", "julia", "test") julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:10:isdefined(Main, :FakePTYs) || @eval Main include(joinpath($(BASE_TEST_PATH), "testhelpers", "FakePTYs.jl")) julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-11-import .Main.FakePTYs: with_fake_pty ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-28- torun = "import LibGit2; $wrapped_code" julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:29: cmd = `$(Base.julia_cmd()) --startup-file=no -e $torun` julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-30- try ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2164- quote julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:2165: include($LIBGIT2_HELPER_PATH) julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2166- credential_loop($cred, $url, $username) ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2400- https_ex = quote julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:2401: include($LIBGIT2_HELPER_PATH) julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2402- credential_loop($valid_cred, $url) ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2465- quote julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:2466: include($LIBGIT2_HELPER_PATH) julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2467- payload = CredentialPayload(allow_prompt=false, allow_ssh_agent=true, ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2514- try julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:2515: include($LIBGIT2_HELPER_PATH) julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2516- credential_loop(default_cred, $url, "git", shred=false) ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2561- ssh_ex = quote julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:2562: include($LIBGIT2_HELPER_PATH) julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2563- payload = CredentialPayload(allow_prompt=true, allow_ssh_agent=false, ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2614- quote julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:2615: include($LIBGIT2_HELPER_PATH) julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2616- payload = CredentialPayload($cred, allow_prompt=$allow_prompt, ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2651- quote julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:2652: include($LIBGIT2_HELPER_PATH) julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2653- payload = CredentialPayload($cred, allow_prompt=$allow_prompt, ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2692- quote julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:2693: include($LIBGIT2_HELPER_PATH) julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2694- cache = CachedCredentials() ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2779- https_ex = quote julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:2780: include($LIBGIT2_HELPER_PATH) julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2781- LibGit2.with(LibGit2.GitConfig($config_path, LibGit2.Consts.CONFIG_LEVEL_APP)) do cfg ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2824- https_ex = quote julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:2825: include($LIBGIT2_HELPER_PATH) julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2826- LibGit2.with(LibGit2.GitConfig($config_path, LibGit2.Consts.CONFIG_LEVEL_APP)) do cfg ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2850- expect_ssh_ex = quote julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:2851: include($LIBGIT2_HELPER_PATH) julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2852- payload = CredentialPayload($valid_cred, allow_ssh_agent=false, ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2868- expect_https_ex = quote julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:2869: include($LIBGIT2_HELPER_PATH) julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2870- payload = CredentialPayload($valid_cred, allow_ssh_agent=false, ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2893- ex = quote julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:2894: include($LIBGIT2_HELPER_PATH) julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2895- payload = CredentialPayload($valid_cred, allow_ssh_agent=false, ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2919- ex = quote julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:2920: include($LIBGIT2_HELPER_PATH) julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2921- user = nothing ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-2997- # Generated a certificate which has the CN set correctly but no subjectAltName julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:2998: run(pipeline(`openssl req -new -x509 -newkey rsa:2048 -sha256 -nodes -keyout $key -out $cert -days 1 -subj "/CN=$common_name"`, stderr=devnull)) julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:2999: run(`openssl x509 -in $cert -out $pem -outform PEM`) julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-3000- ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-3008- pobj = cd(root) do julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:3009: run(`openssl s_server -key $key -cert $cert -WWW -accept $port`, wait=false) julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-3010- end ############################################## julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-3028- """ julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl:3029: cmd = `$(Base.julia_cmd()) --startup-file=no -e $code` julia-1.5.3+dfsg/stdlib/LibGit2/test/libgit2.jl-3030- ############################################## julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/bidiag.jl-235-for func in (:conj, :copy, :real, :imag) julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/bidiag.jl:236: @eval ($func)(M::Bidiagonal) = Bidiagonal(($func)(M.dv), ($func)(M.ev), M.uplo) julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/bidiag.jl-237-end ############################################## julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/dense.jl-1135- Compute the matrix $($fn) of a square matrix `A`. julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/dense.jl:1136: """ ($finv)(A::AbstractMatrix{T}) where {T} = inv(($f)(A)) julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/dense.jl-1137- @doc """ ############################################## julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/dense.jl-1140- Compute the matrix hyperbolic $($fn) of square matrix `A`. julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/dense.jl:1141: """ ($finvh)(A::AbstractMatrix{T}) where {T} = inv(($fh)(A)) julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/dense.jl-1142- end ############################################## julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/dense.jl-1152- $($tname)(A::AbstractMatrix) julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/dense.jl:1153: Compute the inverse matrix $($fn) of `A`. """ ($tfa)(A::AbstractMatrix{T}) where {T} = ($tfainv)(inv(A)) julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/dense.jl-1154- @doc """ julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/dense.jl-1155- $($hname)(A::AbstractMatrix) julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/dense.jl:1156: Compute the inverse matrix hyperbolic $($fn) of `A`. """ ($hfa)(A::AbstractMatrix{T}) where {T} = ($hfainv)(inv(A)) julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/dense.jl-1157- end ############################################## julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/triangular.jl-40- # triangular type and underlying storage type as A. The following method covers these cases. julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/triangular.jl:41: similar(A::$t, ::Type{T}) where {T} = $t(similar(parent(A), T)) julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/triangular.jl-42- # On the other hand, similar(A, [neweltype,] shape...) should yield a matrix of the underlying ############################################## julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/tridiag.jl-163-for func in (:conj, :copy, :real, :imag) julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/tridiag.jl:164: @eval ($func)(M::SymTridiagonal) = SymTridiagonal(($func)(M.dv), ($func)(M.ev)) julia-1.5.3+dfsg/stdlib/LinearAlgebra/src/tridiag.jl-165-end ############################################## julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/adjtrans.jl-511-const BASE_TEST_PATH = joinpath(Sys.BINDIR, "..", "share", "julia", "test") julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/adjtrans.jl:512:isdefined(Main, :OffsetArrays) || @eval Main include(joinpath($(BASE_TEST_PATH), "testhelpers", "OffsetArrays.jl")) julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/adjtrans.jl-513-using .Main.OffsetArrays ############################################## julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/generic.jl-8- julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/generic.jl:9:isdefined(Main, :Quaternions) || @eval Main include(joinpath($(BASE_TEST_PATH), "testhelpers", "Quaternions.jl")) julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/generic.jl-10-using .Main.Quaternions julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/generic.jl-11- julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/generic.jl:12:isdefined(Main, :OffsetArrays) || @eval Main include(joinpath($(BASE_TEST_PATH), "testhelpers", "OffsetArrays.jl")) julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/generic.jl-13-using .Main.OffsetArrays ############################################## julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/matmul.jl-574- script = joinpath(@__DIR__, "ambiguous_exec.jl") julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/matmul.jl:575: cmd = `$(Base.julia_cmd()) --startup-file=no $script` julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/matmul.jl-576- @test success(pipeline(cmd; stdout=stdout, stderr=stderr)) ############################################## julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/special.jl-333-const BASE_TEST_PATH = joinpath(Sys.BINDIR, "..", "share", "julia", "test") julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/special.jl:334:isdefined(Main, :Furlongs) || @eval Main include(joinpath($(BASE_TEST_PATH), "testhelpers", "Furlongs.jl")) julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/special.jl-335-using .Main.Furlongs ############################################## julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/triangular.jl-587-const BASE_TEST_PATH = joinpath(Sys.BINDIR, "..", "share", "julia", "test") julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/triangular.jl:588:isdefined(Main, :Furlongs) || @eval Main include(joinpath($(BASE_TEST_PATH), "testhelpers", "Furlongs.jl")) julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/triangular.jl-589-using .Main.Furlongs ############################################## julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/uniformscaling.jl-7-const BASE_TEST_PATH = joinpath(Sys.BINDIR, "..", "share", "julia", "test") julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/uniformscaling.jl:8:isdefined(Main, :Quaternions) || @eval Main include(joinpath($(BASE_TEST_PATH), "testhelpers", "Quaternions.jl")) julia-1.5.3+dfsg/stdlib/LinearAlgebra/test/uniformscaling.jl-9-using .Main.Quaternions ############################################## julia-1.5.3+dfsg/stdlib/Printf/test/runtests.jl-45- Int16(42), Int32(42), Int64(42), Int128(42), big"42") julia-1.5.3+dfsg/stdlib/Printf/test/runtests.jl:46: @test @eval(@sprintf($fmt, $num) == $val) julia-1.5.3+dfsg/stdlib/Printf/test/runtests.jl-47-end ############################################## julia-1.5.3+dfsg/stdlib/Printf/test/runtests.jl-74- num in (1.2345, big"1.2345") julia-1.5.3+dfsg/stdlib/Printf/test/runtests.jl:75: @test @eval(@sprintf($fmt, $num) == $val) julia-1.5.3+dfsg/stdlib/Printf/test/runtests.jl-76-end ############################################## julia-1.5.3+dfsg/stdlib/Printf/test/runtests.jl-99- fmt_string = string(vflag, flag, space_fmt) julia-1.5.3+dfsg/stdlib/Printf/test/runtests.jl:100: @test @eval(@sprintf($fmt_string, $val) == $ans) julia-1.5.3+dfsg/stdlib/Printf/test/runtests.jl-101- end ############################################## julia-1.5.3+dfsg/stdlib/Printf/test/runtests.jl-176- num in (123.4, big"123.4") julia-1.5.3+dfsg/stdlib/Printf/test/runtests.jl:177: @test @eval(@sprintf($fmt, $num) == $val) julia-1.5.3+dfsg/stdlib/Printf/test/runtests.jl-178-end ############################################## julia-1.5.3+dfsg/stdlib/Profile/test/runtests.jl-122- """ julia-1.5.3+dfsg/stdlib/Profile/test/runtests.jl:123: p = open(`$cmd -e $script`) julia-1.5.3+dfsg/stdlib/Profile/test/runtests.jl-124- t = Timer(120) do t ############################################## julia-1.5.3+dfsg/stdlib/REPL/docs/src/index.md-13-import Markdown julia-1.5.3+dfsg/stdlib/REPL/docs/src/index.md:14:Markdown.parse("```\n\$ julia\n\n$(banner)\njulia>\n```") julia-1.5.3+dfsg/stdlib/REPL/docs/src/index.md-15-``` ############################################## julia-1.5.3+dfsg/stdlib/REPL/src/LineEdit.jl-207- :deactivate_region, :activate_region, :is_region_active, :region_active] julia-1.5.3+dfsg/stdlib/REPL/src/LineEdit.jl:208: @eval ($f)(s::MIState, args...) = $(f)(state(s), args...) julia-1.5.3+dfsg/stdlib/REPL/src/LineEdit.jl-209-end ############################################## julia-1.5.3+dfsg/stdlib/REPL/src/LineEdit.jl-1759- ias = refresh_multi_line(termbuf, s.terminal, buf, s.ias, julia-1.5.3+dfsg/stdlib/REPL/src/LineEdit.jl:1760: s.backward ? "($(failed)reverse-i-search)`" : "($(failed)forward-i-search)`") julia-1.5.3+dfsg/stdlib/REPL/src/LineEdit.jl-1761- s.ias = ias ############################################## julia-1.5.3+dfsg/stdlib/REPL/src/docview.jl-118- line = isa(line, AbstractString) ? line : "" julia-1.5.3+dfsg/stdlib/REPL/src/docview.jl:119: push!(md.content, Message("Extended help is available with `??$line`", (color=Base.info_color(), bold=true))) julia-1.5.3+dfsg/stdlib/REPL/src/docview.jl-120- end ############################################## julia-1.5.3+dfsg/stdlib/REPL/src/docview.jl-216- op = str[1:end-1] julia-1.5.3+dfsg/stdlib/REPL/src/docview.jl:217: return Markdown.parse("`x $op= y` is a synonym for `x = x $op y`") julia-1.5.3+dfsg/stdlib/REPL/src/docview.jl-218- elseif startswith(str, ".") julia-1.5.3+dfsg/stdlib/REPL/src/docview.jl-219- op = str[2:end] julia-1.5.3+dfsg/stdlib/REPL/src/docview.jl:220: return Markdown.parse("`x $ex y` is equivalent to `broadcast($op, x, y)`. See [`broadcast`](@ref).") julia-1.5.3+dfsg/stdlib/REPL/src/docview.jl-221- end ############################################## julia-1.5.3+dfsg/stdlib/REPL/src/docview.jl-465- end julia-1.5.3+dfsg/stdlib/REPL/src/docview.jl:466: fields = join(["`$f`" for f in fieldnames(resolve(binding))], ", ", ", and ") julia-1.5.3+dfsg/stdlib/REPL/src/docview.jl-467- fields = isempty(fields) ? "no fields" : "fields $fields" julia-1.5.3+dfsg/stdlib/REPL/src/docview.jl:468: Markdown.parse("`$(resolve(binding))` has $fields.") julia-1.5.3+dfsg/stdlib/REPL/src/docview.jl-469-end ############################################## julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl-9-const BASE_TEST_PATH = joinpath(Sys.BINDIR, "..", "share", "julia", "test") julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl:10:isdefined(Main, :FakePTYs) || @eval Main include(joinpath($(BASE_TEST_PATH), "testhelpers", "FakePTYs.jl")) julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl-11-import .Main.FakePTYs: with_fake_pty ############################################## julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl-780- nENV["TERM"] = "dumb" julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl:781: p = run(detach(setenv(`$exename --startup-file=no -q`, nENV)), pty_slave, pty_slave, pty_slave, wait=false) julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl-782- Base.close_stdio(pty_slave) ############################################## julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl-818- # Test stream mode julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl:819: p = open(`$exename --startup-file=no -q`, "r+") julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl-820- write(p, "1\nexit()\n") ############################################## julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl-853- # can run it correctly julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl:854: atreplinit(@eval(repl::REPL.LineEditREPL -> ($slot[] = true))) julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl-855- Base._atreplinit(repl) ############################################## julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl-1123-buf = IOBuffer() julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl:1124:md = Base.eval(REPL._helpmode(buf, "$(@__MODULE__).BriefExtended.f")) julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl-1125-@test length(md.content) == 2 && isa(md.content[2], REPL.Message) julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl-1126-buf = IOBuffer() julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl:1127:md = Base.eval(REPL._helpmode(buf, "?$(@__MODULE__).BriefExtended.f")) julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl-1128-@test length(md.content) == 1 && length(md.content[1].content[1].content) == 4 julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl-1129-buf = IOBuffer() julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl:1130:txt = Base.eval(REPL._helpmode(buf, "$(@__MODULE__).BriefExtended.f_plain")) julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl-1131-@test !isempty(sprint(show, txt)) julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl-1132-buf = IOBuffer() julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl:1133:html = Base.eval(REPL._helpmode(buf, "$(@__MODULE__).BriefExtended.f_html")) julia-1.5.3+dfsg/stdlib/REPL/test/repl.jl-1134-@test !isempty(sprint(show, html)) ############################################## julia-1.5.3+dfsg/stdlib/Random/src/Random.jl-77- @eval begin julia-1.5.3+dfsg/stdlib/Random/src/Random.jl:78: $UI(::Type{T}=uint_sup($UI)) where {T} = $UI{T}() julia-1.5.3+dfsg/stdlib/Random/src/Random.jl-79- # useful for defining rand generically: ############################################## julia-1.5.3+dfsg/stdlib/Random/src/normal.jl-172- $randfun(rng::AbstractRNG, T::BitFloatType) = convert(T, $randfun(rng)) julia-1.5.3+dfsg/stdlib/Random/src/normal.jl:173: $randfun(::Type{T}) where {T} = $randfun(default_rng(), T) julia-1.5.3+dfsg/stdlib/Random/src/normal.jl-174- ############################################## julia-1.5.3+dfsg/stdlib/Random/src/normal.jl-200- # generating arrays julia-1.5.3+dfsg/stdlib/Random/src/normal.jl:201: $randfun(rng::AbstractRNG, ::Type{T}, dims::Dims ) where {T} = $randfun!(rng, Array{T}(undef, dims)) julia-1.5.3+dfsg/stdlib/Random/src/normal.jl-202- # Note that this method explicitly does not define $randfun(rng, T), julia-1.5.3+dfsg/stdlib/Random/src/normal.jl-203- # in order to prevent an infinite recursion. julia-1.5.3+dfsg/stdlib/Random/src/normal.jl:204: $randfun(rng::AbstractRNG, ::Type{T}, dim1::Integer, dims::Integer...) where {T} = $randfun!(rng, Array{T}(undef, dim1, dims...)) julia-1.5.3+dfsg/stdlib/Random/src/normal.jl:205: $randfun( ::Type{T}, dims::Dims ) where {T} = $randfun(default_rng(), T, dims) julia-1.5.3+dfsg/stdlib/Random/src/normal.jl:206: $randfun( ::Type{T}, dims::Integer... ) where {T} = $randfun(default_rng(), T, dims...) julia-1.5.3+dfsg/stdlib/Random/src/normal.jl-207- $randfun(rng::AbstractRNG, dims::Dims ) = $randfun(rng, Float64, dims) ############################################## julia-1.5.3+dfsg/stdlib/Random/test/runtests.jl-6-const BASE_TEST_PATH = joinpath(Sys.BINDIR, "..", "share", "julia", "test") julia-1.5.3+dfsg/stdlib/Random/test/runtests.jl:7:isdefined(Main, :OffsetArrays) || @eval Main include(joinpath($(BASE_TEST_PATH), "testhelpers", "OffsetArrays.jl")) julia-1.5.3+dfsg/stdlib/Random/test/runtests.jl-8-using .Main.OffsetArrays ############################################## julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl-128- modstring = String(mod) julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl:129: eval(Meta.parse("module $(modstring); end")) julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl:130: modtype = eval(Meta.parse("$(modstring)")) julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl-131- serialize(s, modtype) ############################################## julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl-149- usertype = "SerializeSomeType" julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl:150: eval(Meta.parse("abstract type $(usertype) end")) julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl:151: utype = eval(Meta.parse("$(usertype)")) julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl-152- serialize(s, utype) ############################################## julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl-158- usertype = "SerializeSomeType1" julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl:159: eval(Meta.parse("mutable struct $(usertype); end")) julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl:160: utype = eval(Meta.parse("$(usertype)")) julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl-161- serialize(s, utype) ############################################## julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl-167- usertype = "SerializeSomeType2" julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl:168: eval(Meta.parse("abstract type $(usertype){T} end")) julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl:169: utype = eval(Meta.parse("$(usertype)")) julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl-170- serialize(s, utype) ############################################## julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl-176- usertype = "SerializeSomeType3" julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl:177: eval(Meta.parse("struct $(usertype){T}; a::T; end")) julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl:178: utype = eval(Meta.parse("$(usertype)")) julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl-179- serialize(s, utype) ############################################## julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl-185- usertype = "SerializeSomeType4" julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl:186: eval(Meta.parse("struct $(usertype){T}; a::T; b::T; end")) julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl:187: utval = eval(Meta.parse("$(usertype)(1,2)")) julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl-188- serialize(s, utval) ############################################## julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl-194- usertype = "SerializeSomeType5" julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl:195: eval(Meta.parse("struct $(usertype){T}; a::T; b::T; c::T; end")) julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl:196: utval = eval(Meta.parse("$(usertype)(1,2,3)")) julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl-197- serialize(s, utval) ############################################## julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl-203- usertype = "SerializeSomeType6" julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl:204: eval(Meta.parse("struct $(usertype){T}; a::T; b::T; c::T; d::T; end")) julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl:205: utval = eval(Meta.parse("$(usertype)(1,2,3,4)")) julia-1.5.3+dfsg/stdlib/Serialization/test/runtests.jl-206- serialize(s, utval) ############################################## julia-1.5.3+dfsg/stdlib/SharedArrays/src/SharedArrays.jl-623- julia-1.5.3+dfsg/stdlib/SharedArrays/src/SharedArrays.jl:624: shmmax_MB = div(parse(Int, split(read(`sysctl $(pfx).shmmax`, String))[end]), 1024*1024) julia-1.5.3+dfsg/stdlib/SharedArrays/src/SharedArrays.jl-625- page_size = parse(Int, split(read(`getconf PAGE_SIZE`, String))[end]) julia-1.5.3+dfsg/stdlib/SharedArrays/src/SharedArrays.jl:626: shmall_MB = div(parse(Int, split(read(`sysctl $(pfx).shmall`, String))[end]) * page_size, 1024*1024) julia-1.5.3+dfsg/stdlib/SharedArrays/src/SharedArrays.jl-627- ############################################## julia-1.5.3+dfsg/stdlib/Sockets/src/IPAddr.jl-277-""" julia-1.5.3+dfsg/stdlib/Sockets/src/IPAddr.jl:278: InetAddr(ip::IPAddr, port) -> InetAddr julia-1.5.3+dfsg/stdlib/Sockets/src/IPAddr.jl-279- ############################################## julia-1.5.3+dfsg/stdlib/Sockets/src/IPAddr.jl-283-```jldoctest julia-1.5.3+dfsg/stdlib/Sockets/src/IPAddr.jl:284:julia> Sockets.InetAddr(ip"127.0.0.1", 8000) julia-1.5.3+dfsg/stdlib/Sockets/src/IPAddr.jl-285-Sockets.InetAddr{IPv4}(ip"127.0.0.1", 8000) ############################################## julia-1.5.3+dfsg/stdlib/Sockets/src/IPAddr.jl-287-""" julia-1.5.3+dfsg/stdlib/Sockets/src/IPAddr.jl:288:InetAddr(ip::IPAddr, port) = InetAddr{typeof(ip)}(ip, port) julia-1.5.3+dfsg/stdlib/Sockets/src/IPAddr.jl-289- julia-1.5.3+dfsg/stdlib/Sockets/src/IPAddr.jl-290-""" julia-1.5.3+dfsg/stdlib/Sockets/src/IPAddr.jl:291: InetAddr(str::AbstractString, port) -> InetAddr julia-1.5.3+dfsg/stdlib/Sockets/src/IPAddr.jl-292- ############################################## julia-1.5.3+dfsg/stdlib/Sockets/src/IPAddr.jl-300-```jldoctest julia-1.5.3+dfsg/stdlib/Sockets/src/IPAddr.jl:301:julia> Sockets.InetAddr("127.0.0.1", 8000) julia-1.5.3+dfsg/stdlib/Sockets/src/IPAddr.jl-302-Sockets.InetAddr{IPv4}(ip"127.0.0.1", 8000) ############################################## julia-1.5.3+dfsg/stdlib/Sockets/src/IPAddr.jl-304-""" julia-1.5.3+dfsg/stdlib/Sockets/src/IPAddr.jl:305:InetAddr(str::AbstractString, port) = InetAddr(parse(IPAddr, str), port) julia-1.5.3+dfsg/stdlib/Sockets/src/IPAddr.jl-306- ############################################## julia-1.5.3+dfsg/stdlib/Sockets/src/Sockets.jl-401- end julia-1.5.3+dfsg/stdlib/Sockets/src/Sockets.jl:402: from = InetAddr(host, port) julia-1.5.3+dfsg/stdlib/Sockets/src/Sockets.jl-403- notify(sock.recvnotify, (from, buf), all=false) ############################################## julia-1.5.3+dfsg/stdlib/Sockets/src/Sockets.jl-618-listen(port::Integer; backlog::Integer=BACKLOG_DEFAULT) = listen(localhost, port; backlog=backlog) julia-1.5.3+dfsg/stdlib/Sockets/src/Sockets.jl:619:listen(host::IPAddr, port::Integer; backlog::Integer=BACKLOG_DEFAULT) = listen(InetAddr(host, port); backlog=backlog) julia-1.5.3+dfsg/stdlib/Sockets/src/Sockets.jl-620- ############################################## julia-1.5.3+dfsg/stdlib/Sockets/src/Sockets.jl-711-function listenany(host::IPAddr, default_port) julia-1.5.3+dfsg/stdlib/Sockets/src/Sockets.jl:712: addr = InetAddr(host, default_port) julia-1.5.3+dfsg/stdlib/Sockets/src/Sockets.jl-713- while true ############################################## julia-1.5.3+dfsg/stdlib/Sockets/src/Sockets.jl-722- close(sock) julia-1.5.3+dfsg/stdlib/Sockets/src/Sockets.jl:723: addr = InetAddr(addr.host, addr.port + 1) julia-1.5.3+dfsg/stdlib/Sockets/src/Sockets.jl-724- if addr.port == default_port ############################################## julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl-233-""" julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl:234: getipaddr() -> IPAddr julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl-235- ############################################## julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl-238- julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl:239: getipaddr(addr_type::Type{T}) where T<:IPAddr -> T julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl-240- ############################################## julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl-248-```julia-repl julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl:249:julia> getipaddr() julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl-250-ip"192.168.1.28" julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl-251- julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl:252:julia> getipaddr(IPv6) julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl-253-ip"fe80::9731:35af:e1c5:6e49" ############################################## julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl-257-""" julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl:258:function getipaddr(addr_type::Type{T}) where T<:IPAddr julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl-259- addrs = getipaddrs(addr_type) ############################################## julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl-268-end julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl:269:getipaddr() = getipaddr(IPv4) julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl-270- ############################################## julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl-332-""" julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl:333: islinklocaladdr(addr::IPAddr) julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl-334- ############################################## julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl-344-""" julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl:345:function islinklocaladdr(addr::IPv4) julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl-346- # RFC 3927 ############################################## julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl-350-end julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl:351:function islinklocaladdr(addr::IPv6) julia-1.5.3+dfsg/stdlib/Sockets/src/addrinfo.jl-352- # RFC 4291 ############################################## julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-84-@testset "InetAddr constructor" begin julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:85: inet = Sockets.InetAddr(IPv4(127,0,0,1), 1024) julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-86- @test inet.host == ip"127.0.0.1" ############################################## julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-89- @test sprint(show, inet) == str julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:90: inet = Sockets.InetAddr("127.0.0.1", 1024) julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-91- @test inet.host == ip"127.0.0.1" ############################################## julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-94-@testset "InetAddr invalid port" begin julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:95: @test_throws InexactError Sockets.InetAddr(IPv4(127,0,0,1), -1) julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:96: @test_throws InexactError Sockets.InetAddr(IPv4(127,0,0,1), typemax(UInt16)+1) julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-97-end ############################################## julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-149- let p = fetch(port) julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:150: otherip = getipaddr() julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-151- if otherip != Sockets.localhost ############################################## julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-352- (IPv6("::1"), UInt16(11012)), julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:353: (getipaddr(), UInt16(11013)) ] julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-354- port, listen_sock = listenany(addr, porthint) ############################################## julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-504- # test the method matching connect!(::TCPSocket, ::Sockets.InetAddr{T<:Base.IPAddr}) julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:505: let addr = Sockets.InetAddr(ip"127.0.0.1", 4444) julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-506- srv = listen(addr) ############################################## julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-512- julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:513: let addr = Sockets.InetAddr(ip"127.0.0.1", 4444) julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-514- srv = listen(addr) ############################################## julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-519- julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:520: let addr = Sockets.InetAddr(ip"127.0.0.1", 4444) julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-521- srv = listen(addr) ############################################## julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-530-@testset "iswritable" begin julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:531: let addr = Sockets.InetAddr(ip"127.0.0.1", 4445) julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-532- srv = listen(addr) ############################################## julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-548-@testset "getipaddrs" begin julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:549: @test getipaddr() in getipaddrs() julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-550- try julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:551: getipaddr(IPv6) in getipaddrs(IPv6) julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-552- catch julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-553- if !isempty(getipaddrs(IPv6)) julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:554: @test "getipaddr(IPv6) errored when it shouldn't have!" julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-555- end ############################################## julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-564-@testset "address scope" begin julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:565: @test islinklocaladdr(ip"169.254.1.0") julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:566: @test islinklocaladdr(ip"169.254.254.255") julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:567: @test islinklocaladdr(ip"fe80::") julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:568: @test islinklocaladdr(ip"febf::") julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:569: @test !islinklocaladdr(ip"127.0.0.1") julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:570: @test !islinklocaladdr(ip"2001::") julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-571- ############################################## julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-576- @testset "TCPSocket stdin" begin julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:577: let addr = Sockets.InetAddr(ip"127.0.0.1", 4455) julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-578- srv = listen(addr) ############################################## julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-580- julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl:581: @test success(pipeline(`$(Base.julia_cmd()) --startup-file=no -e "exit()" -i`, stdin=s)) julia-1.5.3+dfsg/stdlib/Sockets/test/runtests.jl-582- ############################################## julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-971- throw(DimensionMismatch(string("destination argument `X`'s column count, ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:972: "`size(X, 2) (= $(size(X, 2)))`, must match source argument `A`'s row count, `size(A, 1) (= $(size(A, 1)))`"))) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-973- elseif size(X, 1) != size(A, 2) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-974- throw(DimensionMismatch(string("destination argument `X`'s row count, julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:975: `size(X, 1) (= $(size(X, 1)))`, must match source argument `A`'s column count, `size(A, 2) (= $(size(A, 2)))`"))) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-976- elseif length(rowvals(X)) < nnz(A) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-977- throw(ArgumentError(string("the length of destination argument `X`'s `rowval` ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:978: "array, `length(rowvals(X)) (= $(length(rowvals(X))))`, must be greater than or ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:979: "equal to source argument `A`'s allocated entry count, `nnz(A) (= $(nnz(A)))`"))) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-980- elseif length(nonzeros(X)) < nnz(A) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-981- throw(ArgumentError(string("the length of destination argument `X`'s `nzval` ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:982: "array, `length(nonzeros(X)) (= $(length(nonzeros(X))))`, must be greater than or ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:983: "equal to source argument `A`'s allocated entry count, `nnz(A) (= $(nnz(A)))`"))) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-984- end ############################################## julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1091- throw(DimensionMismatch(string("the length of column-permutation argument `q`, ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:1092: "`length(q) (= $(length(q)))`, must match source argument `A`'s column ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:1093: "count, `size(A, 2) (= $(size(A, 2)))`"))) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1094- elseif length(p) != size(A, 1) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1095- throw(DimensionMismatch(string("the length of row-permutation argument `p`, ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:1096: "`length(p) (= $(length(p)))`, must match source argument `A`'s row count, ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:1097: "`size(A, 1) (= $(size(A, 1)))`"))) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1098- end ############################################## julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1130- throw(DimensionMismatch(string("destination argument `X`'s row count, ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:1131: "`size(X, 1) (= $(size(X, 1)))`, must match source argument `A`'s row count, `size(A, 1) (= $(size(A, 1)))`"))) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1132- elseif size(X, 2) != size(A, 2) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1133- throw(DimensionMismatch(string("destination argument `X`'s column count, ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:1134: "`size(X, 2) (= $(size(X, 2)))`, must match source argument `A`'s column count, `size(A, 2) (= $(size(A, 2)))`"))) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1135- elseif length(rowvals(X)) < nnz(A) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1136- throw(ArgumentError(string("the length of destination argument `X`'s `rowval` ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:1137: "array, `length(rowvals(X)) (= $(length(rowvals(X))))`, must be greater than or ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:1138: "equal to source argument `A`'s allocated entry count, `nnz(A) (= $(nnz(A)))`"))) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1139- elseif length(nonzeros(X)) < nnz(A) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1140- throw(ArgumentError(string("the length of destination argument `X`'s `nzval` ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:1141: "array, `length(nonzeros(X)) (= $(length(nonzeros(X))))`, must be greater than or ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:1142: "equal to source argument `A`'s allocated entry count, `nnz(A) (= $(nnz(A)))`"))) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1143- end ############################################## julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1152- throw(DimensionMismatch(string("intermediate result argument `C`'s column count, ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:1153: "`size(C, 2) (= $(size(C, 2)))`, must match source argument `A`'s row count, `size(A, 1) (= $(size(A, 1)))`"))) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1154- elseif size(C, 1) != size(A, 2) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1155- throw(DimensionMismatch(string("intermediate result argument `C`'s row count, ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:1156: "`size(C, 1) (= $(size(C, 1)))`, must match source argument `A`'s column count, `size(A, 2) (= $(size(A, 2)))`"))) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1157- elseif length(rowvals(C)) < nnz(A) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1158- throw(ArgumentError(string("the length of intermediate result argument `C`'s ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:1159: "`rowval` array, `length(rowvals(C)) (= $(length(rowvals(C))))`, must be greater than ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:1160: "or equal to source argument `A`'s allocated entry count, `nnz(A) (= $(nnz(A)))`"))) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1161- elseif length(nonzeros(C)) < nnz(A) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1162- throw(ArgumentError(string("the length of intermediate result argument `C`'s ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:1163: "`rowval` array, `length(nonzeros(C)) (= $(length(nonzeros(C))))`, must be greater than ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1164- "or equal to source argument `A`'s allocated entry count, `nnz(A)` (= $(nnz(A)))"))) ############################################## julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1174- throw(DimensionMismatch(string("argument `workcolptr`'s length, ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:1175: "`length(workcolptr) (= $(length(workcolptr)))`, must exceed source argument ", julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl:1176: "`A`'s column count, `size(A, 2) (= $(size(A, 2)))`"))) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsematrix.jl-1177- end ############################################## julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsevector.jl-1336- if f === :minimum julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsevector.jl:1337: @eval ($f)(::typeof($op), x::$SV{T}) where {T<:Number} = nnz(x) < length(x) ? ($op)(zero(T)) : ($f)($op, nonzeros(x)) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsevector.jl-1338- else julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsevector.jl:1339: @eval ($f)(::typeof($op), x::$SV) = ($f)($op, nonzeros(x)) julia-1.5.3+dfsg/stdlib/SparseArrays/src/sparsevector.jl-1340- end ############################################## julia-1.5.3+dfsg/stdlib/SparseArrays/test/sparse.jl-491-const BASE_TEST_PATH = joinpath(Sys.BINDIR, "..", "share", "julia", "test") julia-1.5.3+dfsg/stdlib/SparseArrays/test/sparse.jl:492:isdefined(Main, :Quaternions) || @eval Main include(joinpath($(BASE_TEST_PATH), "testhelpers", "Quaternions.jl")) julia-1.5.3+dfsg/stdlib/SparseArrays/test/sparse.jl-493-using .Main.Quaternions ############################################## julia-1.5.3+dfsg/stdlib/SparseArrays/test/sparse.jl-2714- script = joinpath(@__DIR__, "ambiguous_exec.jl") julia-1.5.3+dfsg/stdlib/SparseArrays/test/sparse.jl:2715: cmd = `$(Base.julia_cmd()) --startup-file=no $script` julia-1.5.3+dfsg/stdlib/SparseArrays/test/sparse.jl-2716- @test success(pipeline(cmd; stdout=stdout, stderr=stderr)) ############################################## julia-1.5.3+dfsg/stdlib/SuiteSparse/test/runtests.jl-11- # Test multithreaded execution julia-1.5.3+dfsg/stdlib/SuiteSparse/test/runtests.jl:12: let p, cmd = `$(Base.julia_cmd()) --depwarn=error --startup-file=no threads.jl` julia-1.5.3+dfsg/stdlib/SuiteSparse/test/runtests.jl-13- # test both nthreads==1 and nthreads>1. spawn a process to test whichever ############################################## julia-1.5.3+dfsg/stdlib/Test/src/Test.jl-1004- if !(testsettype isa Type && testsettype <: AbstractTestSet) julia-1.5.3+dfsg/stdlib/Test/src/Test.jl:1005: error("Expected `$testsetname` to be an AbstractTestSet, it is a ", julia-1.5.3+dfsg/stdlib/Test/src/Test.jl-1006- typeof(testsettype), ". ", ############################################## julia-1.5.3+dfsg/stdlib/Test/src/Test.jl-1008- """ julia-1.5.3+dfsg/stdlib/Test/src/Test.jl:1009: To use `$testsetname` as a testset name, interpolate it into a string, e.g: julia-1.5.3+dfsg/stdlib/Test/src/Test.jl-1010- @testset "\$$testsetname" begin ############################################## julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl-275-# test that FallbackTestSet will throw immediately julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl:276:cmd = `$(Base.julia_cmd()) --startup-file=no --depwarn=error test_exec.jl` julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl-277-@test !success(pipeline(cmd)) ############################################## julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl-608- """) julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl:609: local msg = read(pipeline(ignorestatus(`$(Base.julia_cmd()) --startup-file=no --color=no $f`), stderr=devnull), String) julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl-610- @test !occursin("do_test(", msg) ############################################## julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl-703- julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl:704: local msg = read(pipeline(ignorestatus(`$(Base.julia_cmd()) --startup-file=no --color=no $f`), stderr=devnull), String) julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl-705- @test occursin("at " * f * ":" * "3", msg) ############################################## julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl-713-@testset "≈ with atol" begin julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl:714: local cmd = `$(Base.julia_cmd()) --startup-file=no --color=no` julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl:715: f(src) = read(pipeline(ignorestatus(`$cmd -e $src`), stderr=devnull), String) julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl-716- ############################################## julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl-855- """) julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl:856: cmd = `$(Base.julia_cmd()) --startup-file=no --color=no $f` julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl-857- msg = success(pipeline(ignorestatus(cmd), stderr=devnull)) ############################################## julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl-870- """) julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl:871: run(pipeline(ignorestatus(`$(Base.julia_cmd()) --startup-file=no --color=no $f`), stderr=err)) julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl-872- msg = read(err, String) ############################################## julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl-925- path = joinpath(@__DIR__(), "test_pop_testset_exec.jl") julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl:926: cmd = `$(Base.julia_cmd()) $path` julia-1.5.3+dfsg/stdlib/Test/test/runtests.jl-927- ok = !success(pipeline(cmd; stdout = io, stderr = io)) ############################################## julia-1.5.3+dfsg/sysimage.mk-12- julia-1.5.3+dfsg/sysimage.mk:13:VERSDIR := v`cut -d. -f1-2 < $(JULIAHOME)/VERSION` julia-1.5.3+dfsg/sysimage.mk-14- ############################################## julia-1.5.3+dfsg/sysimage.mk-69- --startup-file=no --warn-overwrite=yes --sysimage $(call cygpath_w,$<) sysimg.jl $(RELBUILDROOT); then \ julia-1.5.3+dfsg/sysimage.mk:70: echo '*** This error might be fixed by running `make clean`. If the error persists$(COMMA) try `make cleanall`. ***'; \ julia-1.5.3+dfsg/sysimage.mk-71- false; \ ############################################## julia-1.5.3+dfsg/sysimage.mk-79- --startup-file=no --warn-overwrite=yes --sysimage $$(call cygpath_w,$$<) $$(call cygpath_w,$$(JULIAHOME)/contrib/generate_precompile.jl) $(JULIA_PRECOMPILE); then \ julia-1.5.3+dfsg/sysimage.mk:80: echo '*** This error is usually fixed by running `make clean`. If the error persists$$(COMMA) try `make cleanall`. ***'; \ julia-1.5.3+dfsg/sysimage.mk-81- false; \ ############################################## julia-1.5.3+dfsg/test/backtrace.jl-238- julia-1.5.3+dfsg/test/backtrace.jl:239: @test read(`$(Base.julia_cmd()) --startup-file=no --compile=min -e $code`, String) == "1000 1000" julia-1.5.3+dfsg/test/backtrace.jl-240-end ############################################## julia-1.5.3+dfsg/test/backtrace.jl-255- julia-1.5.3+dfsg/test/backtrace.jl:256: bt_str = read(`$(Base.julia_cmd()) --startup-file=no --compile=min -e $code`, String) julia-1.5.3+dfsg/test/backtrace.jl-257- @test occursin("InterpreterIP in MethodInstance for foo", bt_str) ############################################## julia-1.5.3+dfsg/test/boundscheck.jl-4- julia-1.5.3+dfsg/test/boundscheck.jl:5:cmd = `$(Base.julia_cmd()) --depwarn=error --startup-file=no boundscheck_exec.jl` julia-1.5.3+dfsg/test/boundscheck.jl-6-if !success(pipeline(cmd; stdout=stdout, stderr=stderr)) ############################################## julia-1.5.3+dfsg/test/boundscheck.jl-9- julia-1.5.3+dfsg/test/boundscheck.jl:10:cmd = `$(Base.julia_cmd()) --check-bounds=yes --startup-file=no --depwarn=error boundscheck_exec.jl` julia-1.5.3+dfsg/test/boundscheck.jl-11-if !success(pipeline(cmd; stdout=stdout, stderr=stderr)) ############################################## julia-1.5.3+dfsg/test/boundscheck.jl-14- julia-1.5.3+dfsg/test/boundscheck.jl:15:cmd = `$(Base.julia_cmd()) --check-bounds=no --startup-file=no --depwarn=error boundscheck_exec.jl` julia-1.5.3+dfsg/test/boundscheck.jl-16-if !success(pipeline(cmd; stdout=stdout, stderr=stderr)) ############################################## julia-1.5.3+dfsg/test/ccall.jl-588- if quoteplz julia-1.5.3+dfsg/test/ccall.jl:589: x = eval(:(ccall((:test_16, libccalltest), Struct16I, (Struct16I, Float32), $(QuoteNode(a)), Float32(42)))) julia-1.5.3+dfsg/test/ccall.jl-590- else ############################################## julia-1.5.3+dfsg/test/ccall.jl-1060-# Pointer finalizer at exit (PR #19911) julia-1.5.3+dfsg/test/ccall.jl:1061:let result = read(`$(Base.julia_cmd()) --startup-file=no -e "A = Ref{Cint}(42); finalizer(cglobal((:c_exit_finalizer, \"$libccalltest\"), Cvoid), A)"`, String) julia-1.5.3+dfsg/test/ccall.jl-1062- @test result == "c_exit_finalizer: 42, 0" ############################################## julia-1.5.3+dfsg/test/ccall.jl-1550- nba = na * elsz julia-1.5.3+dfsg/test/ccall.jl:1551: ptr = eval(:(ccall(:memcpy, Ptr{Cvoid}, (Ptr{Cvoid}, Ptr{Cvoid}, UInt), $(arr), $(a), $(nba)))) julia-1.5.3+dfsg/test/ccall.jl-1552- @test isa(ptr, Ptr{Cvoid}) ############################################## julia-1.5.3+dfsg/test/ccall.jl-1630- name = :fptr julia-1.5.3+dfsg/test/ccall.jl:1631: throw(ArgumentError("interpolated function `$(name)` was not a Ptr{Cvoid}, but $(typeof(func))")) julia-1.5.3+dfsg/test/ccall.jl-1632- end ############################################## julia-1.5.3+dfsg/test/choosetests.jl-116- try julia-1.5.3+dfsg/test/choosetests.jl:117: ipa = getipaddr() julia-1.5.3+dfsg/test/choosetests.jl-118- catch ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-52- julia-1.5.3+dfsg/test/cmdlineargs.jl:53:let exename = `$(Base.julia_cmd()) --startup-file=no` julia-1.5.3+dfsg/test/cmdlineargs.jl-54- # tests for handling of ENV errors julia-1.5.3+dfsg/test/cmdlineargs.jl-55- let v = writereadpipeline("println(\"REPL: \", @which(less), @isdefined(InteractiveUtils))", julia-1.5.3+dfsg/test/cmdlineargs.jl:56: setenv(`$exename -i -E 'empty!(LOAD_PATH); @isdefined InteractiveUtils'`, julia-1.5.3+dfsg/test/cmdlineargs.jl-57- "JULIA_LOAD_PATH" => "", ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-63- let v = writereadpipeline("println(\"REPL: \", InteractiveUtils)", julia-1.5.3+dfsg/test/cmdlineargs.jl:64: setenv(`$exename -i -e 'const InteractiveUtils = 3'`, julia-1.5.3+dfsg/test/cmdlineargs.jl-65- "JULIA_LOAD_PATH" => ";;;:::", ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-67- "HOME" => homedir())) julia-1.5.3+dfsg/test/cmdlineargs.jl:68: # TODO: ideally, `@which`, etc. would still work, but Julia can't handle `using $InterativeUtils` julia-1.5.3+dfsg/test/cmdlineargs.jl-69- @test v[1] == "REPL: 3\n" ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-83- for nc in ("0", "-2", "x", "2x", " ", "") julia-1.5.3+dfsg/test/cmdlineargs.jl:84: v = readchomperrors(setenv(`$exename -i -E 'Sys.CPU_THREADS'`, "JULIA_CPU_THREADS" => nc, "HOME" => homedir())) julia-1.5.3+dfsg/test/cmdlineargs.jl-85- @test v[1] ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-89- for nc in ("1", " 1 ", " +1 ", " 0x1 ") julia-1.5.3+dfsg/test/cmdlineargs.jl:90: v = readchomperrors(setenv(`$exename -i -E 'Sys.CPU_THREADS'`, "JULIA_CPU_THREADS" => nc, "HOME" => homedir())) julia-1.5.3+dfsg/test/cmdlineargs.jl-91- @test v[1] ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-96- julia-1.5.3+dfsg/test/cmdlineargs.jl:97:let exename = `$(Base.julia_cmd()) --startup-file=no` julia-1.5.3+dfsg/test/cmdlineargs.jl-98- # --version julia-1.5.3+dfsg/test/cmdlineargs.jl:99: let v = split(read(`$exename -v`, String), "julia version ")[end] julia-1.5.3+dfsg/test/cmdlineargs.jl-100- @test Base.VERSION_STRING == chomp(v) julia-1.5.3+dfsg/test/cmdlineargs.jl-101- end julia-1.5.3+dfsg/test/cmdlineargs.jl:102: @test read(`$exename -v`, String) == read(`$exename --version`, String) julia-1.5.3+dfsg/test/cmdlineargs.jl-103- ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-105- let header = "julia [switches] -- [programfile] [args...]" julia-1.5.3+dfsg/test/cmdlineargs.jl:106: @test startswith(read(`$exename -h`, String), header) julia-1.5.3+dfsg/test/cmdlineargs.jl:107: @test startswith(read(`$exename --help`, String), header) julia-1.5.3+dfsg/test/cmdlineargs.jl-108- end ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-112- expanded = abspath(expanduser("~/foo")) julia-1.5.3+dfsg/test/cmdlineargs.jl:113: @test occursin(expanded, readchomp(`$exename --project='~/foo' -E 'Base.active_project()'`)) julia-1.5.3+dfsg/test/cmdlineargs.jl:114: @test occursin(expanded, readchomp(setenv(`$exename -E 'Base.active_project()'`, "JULIA_PROJECT" => "~/foo", "HOME" => homedir()))) julia-1.5.3+dfsg/test/cmdlineargs.jl-115- end ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-118- let t(q,b) = "Base.JLOptions().quiet == $q && Base.JLOptions().banner == $b" julia-1.5.3+dfsg/test/cmdlineargs.jl:119: @test success(`$exename -e $(t(0, -1))`) julia-1.5.3+dfsg/test/cmdlineargs.jl:120: @test success(`$exename -q -e $(t(1, 0))`) julia-1.5.3+dfsg/test/cmdlineargs.jl:121: @test success(`$exename --quiet -e $(t(1, 0))`) julia-1.5.3+dfsg/test/cmdlineargs.jl:122: @test success(`$exename --banner=no -e $(t(0, 0))`) julia-1.5.3+dfsg/test/cmdlineargs.jl:123: @test success(`$exename --banner=yes -e $(t(0, 1))`) julia-1.5.3+dfsg/test/cmdlineargs.jl:124: @test success(`$exename -q --banner=no -e $(t(1, 0))`) julia-1.5.3+dfsg/test/cmdlineargs.jl:125: @test success(`$exename -q --banner=yes -e $(t(1, 1))`) julia-1.5.3+dfsg/test/cmdlineargs.jl:126: @test success(`$exename --banner=no -q -e $(t(1, 0))`) julia-1.5.3+dfsg/test/cmdlineargs.jl:127: @test success(`$exename --banner=yes -q -e $(t(1, 1))`) julia-1.5.3+dfsg/test/cmdlineargs.jl-128- end ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-130- # --home julia-1.5.3+dfsg/test/cmdlineargs.jl:131: @test success(`$exename -H $(Sys.BINDIR)`) julia-1.5.3+dfsg/test/cmdlineargs.jl:132: @test success(`$exename --home=$(Sys.BINDIR)`) julia-1.5.3+dfsg/test/cmdlineargs.jl-133- julia-1.5.3+dfsg/test/cmdlineargs.jl-134- # --eval julia-1.5.3+dfsg/test/cmdlineargs.jl:135: @test success(`$exename -e "exit(0)"`) julia-1.5.3+dfsg/test/cmdlineargs.jl:136: @test !success(`$exename -e "exit(1)"`) julia-1.5.3+dfsg/test/cmdlineargs.jl:137: @test success(`$exename --eval="exit(0)"`) julia-1.5.3+dfsg/test/cmdlineargs.jl:138: @test !success(`$exename --eval="exit(1)"`) julia-1.5.3+dfsg/test/cmdlineargs.jl:139: @test !success(`$exename -e`) julia-1.5.3+dfsg/test/cmdlineargs.jl:140: @test !success(`$exename --eval`) julia-1.5.3+dfsg/test/cmdlineargs.jl-141- # --eval --interactive (replaced --post-boot) julia-1.5.3+dfsg/test/cmdlineargs.jl:142: @test success(`$exename -i -e "exit(0)"`) julia-1.5.3+dfsg/test/cmdlineargs.jl:143: @test !success(`$exename -i -e "exit(1)"`) julia-1.5.3+dfsg/test/cmdlineargs.jl-144- # issue #34924 julia-1.5.3+dfsg/test/cmdlineargs.jl:145: @test success(`$exename -e 'const LOAD_PATH=1'`) julia-1.5.3+dfsg/test/cmdlineargs.jl-146- julia-1.5.3+dfsg/test/cmdlineargs.jl-147- # --print julia-1.5.3+dfsg/test/cmdlineargs.jl:148: @test read(`$exename -E "1+1"`, String) == "2\n" julia-1.5.3+dfsg/test/cmdlineargs.jl:149: @test read(`$exename --print="1+1"`, String) == "2\n" julia-1.5.3+dfsg/test/cmdlineargs.jl:150: @test !success(`$exename -E`) julia-1.5.3+dfsg/test/cmdlineargs.jl:151: @test !success(`$exename --print`) julia-1.5.3+dfsg/test/cmdlineargs.jl-152- ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-156- write(testfile, "testvar = :test\nprintln(\"loaded\")\n") julia-1.5.3+dfsg/test/cmdlineargs.jl:157: @test read(`$exename -i --load=$testfile -e "println(testvar)"`, String) == "loaded\ntest\n" julia-1.5.3+dfsg/test/cmdlineargs.jl:158: @test read(`$exename -i -L $testfile -e "println(testvar)"`, String) == "loaded\ntest\n" julia-1.5.3+dfsg/test/cmdlineargs.jl-159- # multiple, combined ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-183- # -L, --load requires an argument julia-1.5.3+dfsg/test/cmdlineargs.jl:184: @test !success(`$exename -L`) julia-1.5.3+dfsg/test/cmdlineargs.jl:185: @test !success(`$exename --load`) julia-1.5.3+dfsg/test/cmdlineargs.jl-186- julia-1.5.3+dfsg/test/cmdlineargs.jl-187- # --cpu-target (requires LLVM enabled) julia-1.5.3+dfsg/test/cmdlineargs.jl:188: @test !success(`$exename -C invalidtarget`) julia-1.5.3+dfsg/test/cmdlineargs.jl:189: @test !success(`$exename --cpu-target=invalidtarget`) julia-1.5.3+dfsg/test/cmdlineargs.jl-190- ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-194- @test string(cpu_threads) == julia-1.5.3+dfsg/test/cmdlineargs.jl:195: read(`$exename --threads auto -e $code`, String) == julia-1.5.3+dfsg/test/cmdlineargs.jl:196: read(`$exename --threads=auto -e $code`, String) == julia-1.5.3+dfsg/test/cmdlineargs.jl:197: read(`$exename -tauto -e $code`, String) == julia-1.5.3+dfsg/test/cmdlineargs.jl:198: read(`$exename -t auto -e $code`, String) == julia-1.5.3+dfsg/test/cmdlineargs.jl:199: read(`$exename -t $(cpu_threads+1) -e $code`, String) julia-1.5.3+dfsg/test/cmdlineargs.jl-200- if cpu_threads > 1 julia-1.5.3+dfsg/test/cmdlineargs.jl-201- for nt in (nothing, "1"); withenv("JULIA_NUM_THREADS"=>nt) do julia-1.5.3+dfsg/test/cmdlineargs.jl:202: @test read(`$exename --threads 2 -e $code`, String) == julia-1.5.3+dfsg/test/cmdlineargs.jl:203: read(`$exename --threads=2 -e $code`, String) == julia-1.5.3+dfsg/test/cmdlineargs.jl:204: read(`$exename -t2 -e $code`, String) == julia-1.5.3+dfsg/test/cmdlineargs.jl:205: read(`$exename -t 2 -e $code`, String) == "2" julia-1.5.3+dfsg/test/cmdlineargs.jl-206- end end julia-1.5.3+dfsg/test/cmdlineargs.jl-207- end julia-1.5.3+dfsg/test/cmdlineargs.jl:208: @test !success(`$exename -t 0`) julia-1.5.3+dfsg/test/cmdlineargs.jl:209: @test !success(`$exename -t -1`) julia-1.5.3+dfsg/test/cmdlineargs.jl-210- ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-213- code = "print(sum(remotecall_fetch(Threads.nthreads, x) for x in procs()))" julia-1.5.3+dfsg/test/cmdlineargs.jl:214: @test read(`$exename -p2 -t2 -e $code`, String) == "6" julia-1.5.3+dfsg/test/cmdlineargs.jl-215- end end ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-217- # --procs julia-1.5.3+dfsg/test/cmdlineargs.jl:218: @test readchomp(`$exename -q -p 2 -e "println(nworkers())"`) == "2" julia-1.5.3+dfsg/test/cmdlineargs.jl:219: @test !success(`$exename -p 0`) julia-1.5.3+dfsg/test/cmdlineargs.jl:220: let p = run(`$exename --procs=1.0`, wait=false) julia-1.5.3+dfsg/test/cmdlineargs.jl-221- wait(p) ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-239- # -i, isinteractive julia-1.5.3+dfsg/test/cmdlineargs.jl:240: @test readchomp(`$exename -E "isinteractive()"`) == "false" julia-1.5.3+dfsg/test/cmdlineargs.jl:241: @test readchomp(`$exename -E "isinteractive()" -i`) == "true" julia-1.5.3+dfsg/test/cmdlineargs.jl-242- julia-1.5.3+dfsg/test/cmdlineargs.jl-243- # --color julia-1.5.3+dfsg/test/cmdlineargs.jl:244: @test readchomp(`$exename --color=yes -E "Base.have_color"`) == "true" julia-1.5.3+dfsg/test/cmdlineargs.jl:245: @test readchomp(`$exename --color=no -E "Base.have_color"`) == "false" julia-1.5.3+dfsg/test/cmdlineargs.jl:246: @test !success(`$exename --color=false`) julia-1.5.3+dfsg/test/cmdlineargs.jl-247- ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-252- --history-file=no`) == "false" julia-1.5.3+dfsg/test/cmdlineargs.jl:253: @test !success(`$exename --history-file=false`) julia-1.5.3+dfsg/test/cmdlineargs.jl-254- ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-262- @test !isfile(covfile) julia-1.5.3+dfsg/test/cmdlineargs.jl:263: defaultcov = readchomp(`$exename -E "Base.JLOptions().code_coverage != 0" -L $inputfile`) julia-1.5.3+dfsg/test/cmdlineargs.jl-264- opts = Base.JLOptions() ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-291- # --track-allocation julia-1.5.3+dfsg/test/cmdlineargs.jl:292: @test readchomp(`$exename -E "Base.JLOptions().malloc_log != 0"`) == "false" julia-1.5.3+dfsg/test/cmdlineargs.jl:293: @test readchomp(`$exename -E "Base.JLOptions().malloc_log != 0" --track-allocation=none`) == "false" julia-1.5.3+dfsg/test/cmdlineargs.jl-294- julia-1.5.3+dfsg/test/cmdlineargs.jl:295: @test readchomp(`$exename -E "Base.JLOptions().malloc_log != 0" --track-allocation`) == "true" julia-1.5.3+dfsg/test/cmdlineargs.jl:296: @test readchomp(`$exename -E "Base.JLOptions().malloc_log != 0" --track-allocation=user`) == "true" julia-1.5.3+dfsg/test/cmdlineargs.jl-297- mktempdir() do dir ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-299- inputfile = joinpath(helperdir, "allocation_file.jl") julia-1.5.3+dfsg/test/cmdlineargs.jl:300: pid = readchomp(`$exename -E "getpid()" -L $inputfile --track-allocation=user`) julia-1.5.3+dfsg/test/cmdlineargs.jl-301- memfile = "$inputfile.$pid.mem" ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-326- # --optimize julia-1.5.3+dfsg/test/cmdlineargs.jl:327: @test readchomp(`$exename -E "Base.JLOptions().opt_level"`) == "2" julia-1.5.3+dfsg/test/cmdlineargs.jl:328: @test readchomp(`$exename -E "Base.JLOptions().opt_level" -O`) == "3" julia-1.5.3+dfsg/test/cmdlineargs.jl:329: @test readchomp(`$exename -E "Base.JLOptions().opt_level" --optimize`) == "3" julia-1.5.3+dfsg/test/cmdlineargs.jl:330: @test readchomp(`$exename -E "Base.JLOptions().opt_level" -O0`) == "0" julia-1.5.3+dfsg/test/cmdlineargs.jl-331- julia-1.5.3+dfsg/test/cmdlineargs.jl-332- # -g julia-1.5.3+dfsg/test/cmdlineargs.jl:333: @test readchomp(`$exename -E "Base.JLOptions().debug_level" -g`) == "2" julia-1.5.3+dfsg/test/cmdlineargs.jl:334: let code = writereadpipeline("code_llvm(stdout, +, (Int64, Int64), raw=true, dump_module=true)", `$exename -g0`) julia-1.5.3+dfsg/test/cmdlineargs.jl-335- @test code[2] ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-341- end julia-1.5.3+dfsg/test/cmdlineargs.jl:342: let code = writereadpipeline("code_llvm(stdout, +, (Int64, Int64), raw=true, dump_module=true)", `$exename -g1`) julia-1.5.3+dfsg/test/cmdlineargs.jl-343- @test code[2] ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-349- end julia-1.5.3+dfsg/test/cmdlineargs.jl:350: let code = writereadpipeline("code_llvm(stdout, +, (Int64, Int64), raw=true, dump_module=true)", `$exename -g2`) julia-1.5.3+dfsg/test/cmdlineargs.jl-351- @test code[2] ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-362- JL_OPTIONS_CHECK_BOUNDS_OFF = 2 julia-1.5.3+dfsg/test/cmdlineargs.jl:363: exename_default_checkbounds = `$exename` julia-1.5.3+dfsg/test/cmdlineargs.jl-364- filter!(a -> !startswith(a, "--check-bounds="), exename_default_checkbounds.exec) julia-1.5.3+dfsg/test/cmdlineargs.jl:365: @test parse(Int, readchomp(`$exename_default_checkbounds -E "Int(Base.JLOptions().check_bounds)"`)) == julia-1.5.3+dfsg/test/cmdlineargs.jl-366- JL_OPTIONS_CHECK_BOUNDS_DEFAULT ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-372- # check-bounds takes yes/no as argument julia-1.5.3+dfsg/test/cmdlineargs.jl:373: @test !success(`$exename -E "exit(0)" --check-bounds=false`) julia-1.5.3+dfsg/test/cmdlineargs.jl-374- julia-1.5.3+dfsg/test/cmdlineargs.jl-375- # --depwarn julia-1.5.3+dfsg/test/cmdlineargs.jl:376: @test readchomp(`$exename --depwarn=no -E "Base.JLOptions().depwarn"`) == "0" julia-1.5.3+dfsg/test/cmdlineargs.jl:377: @test readchomp(`$exename --depwarn=yes -E "Base.JLOptions().depwarn"`) == "1" julia-1.5.3+dfsg/test/cmdlineargs.jl:378: @test !success(`$exename --depwarn=false`) julia-1.5.3+dfsg/test/cmdlineargs.jl-379- # test deprecated syntax julia-1.5.3+dfsg/test/cmdlineargs.jl:380: @test !success(`$exename -e "foo (x::Int) = x * x" --depwarn=error`) julia-1.5.3+dfsg/test/cmdlineargs.jl-381- # test deprecated method ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-399- julia-1.5.3+dfsg/test/cmdlineargs.jl:400: @test !success(`$exename -E "$code" --depwarn=error`) julia-1.5.3+dfsg/test/cmdlineargs.jl-401- julia-1.5.3+dfsg/test/cmdlineargs.jl:402: @test readchomperrors(`$exename -E "$code" --depwarn=yes`) == julia-1.5.3+dfsg/test/cmdlineargs.jl-403- (true, "true", "WARNING: Foo.Deprecated is deprecated, use NotDeprecated instead.\n likely near none:8") julia-1.5.3+dfsg/test/cmdlineargs.jl-404- julia-1.5.3+dfsg/test/cmdlineargs.jl:405: @test readchomperrors(`$exename -E "$code" --depwarn=no`) == julia-1.5.3+dfsg/test/cmdlineargs.jl-406- (true, "true", "") ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-409- # --inline julia-1.5.3+dfsg/test/cmdlineargs.jl:410: @test readchomp(`$exename -E "Bool(Base.JLOptions().can_inline)"`) == "true" julia-1.5.3+dfsg/test/cmdlineargs.jl:411: @test readchomp(`$exename --inline=yes -E "Bool(Base.JLOptions().can_inline)"`) == "true" julia-1.5.3+dfsg/test/cmdlineargs.jl:412: @test readchomp(`$exename --inline=no -E "Bool(Base.JLOptions().can_inline)"`) == "false" julia-1.5.3+dfsg/test/cmdlineargs.jl-413- # --inline takes yes/no as argument julia-1.5.3+dfsg/test/cmdlineargs.jl:414: @test !success(`$exename --inline=false`) julia-1.5.3+dfsg/test/cmdlineargs.jl-415- julia-1.5.3+dfsg/test/cmdlineargs.jl-416- # --polly julia-1.5.3+dfsg/test/cmdlineargs.jl:417: @test readchomp(`$exename -E "Bool(Base.JLOptions().polly)"`) == "true" julia-1.5.3+dfsg/test/cmdlineargs.jl:418: @test readchomp(`$exename --polly=yes -E "Bool(Base.JLOptions().polly)"`) == "true" julia-1.5.3+dfsg/test/cmdlineargs.jl:419: @test readchomp(`$exename --polly=no -E "Bool(Base.JLOptions().polly)"`) == "false" julia-1.5.3+dfsg/test/cmdlineargs.jl-420- # --polly takes yes/no as argument julia-1.5.3+dfsg/test/cmdlineargs.jl:421: @test !success(`$exename --polly=false`) julia-1.5.3+dfsg/test/cmdlineargs.jl-422- ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-438- # tested in test/parallel.jl) julia-1.5.3+dfsg/test/cmdlineargs.jl:439: @test !success(`$exename --worker=true`) julia-1.5.3+dfsg/test/cmdlineargs.jl-440- ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-453- output = "[\"foo\", \"-bar\", \"--baz\"]" julia-1.5.3+dfsg/test/cmdlineargs.jl:454: @test readchomp(`$exename $testfile foo -bar --baz`) == output julia-1.5.3+dfsg/test/cmdlineargs.jl:455: @test readchomp(`$exename $testfile -- foo -bar --baz`) == output julia-1.5.3+dfsg/test/cmdlineargs.jl:456: @test readchomp(`$exename -L $testfile -e 'exit(0)' -- foo -bar --baz`) == julia-1.5.3+dfsg/test/cmdlineargs.jl-457- output julia-1.5.3+dfsg/test/cmdlineargs.jl:458: @test readchomp(`$exename --startup-file=yes -e 'exit(0)' -- foo -bar --baz`) == julia-1.5.3+dfsg/test/cmdlineargs.jl-459- output ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-461- output = "String[]\nString[]" julia-1.5.3+dfsg/test/cmdlineargs.jl:462: @test readchomp(`$exename -L $testfile $testfile`) == output julia-1.5.3+dfsg/test/cmdlineargs.jl:463: @test readchomp(`$exename --startup-file=yes $testfile`) == output julia-1.5.3+dfsg/test/cmdlineargs.jl-464- julia-1.5.3+dfsg/test/cmdlineargs.jl:465: @test !success(`$exename --foo $testfile`) julia-1.5.3+dfsg/test/cmdlineargs.jl:466: @test readchomp(`$exename -L $testfile -e 'exit(0)' -- foo -bar -- baz`) == julia-1.5.3+dfsg/test/cmdlineargs.jl-467- "[\"foo\", \"-bar\", \"--\", \"baz\"]" ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-482- println(PROGRAM_FILE) julia-1.5.3+dfsg/test/cmdlineargs.jl:483: include(\"$(escape_string(b))\") julia-1.5.3+dfsg/test/cmdlineargs.jl-484- """) ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-494- withenv((Sys.iswindows() ? "USERPROFILE" : "HOME") => dir) do julia-1.5.3+dfsg/test/cmdlineargs.jl:495: @test readsplit(`$exename $a`) == julia-1.5.3+dfsg/test/cmdlineargs.jl-496- [a, a, julia-1.5.3+dfsg/test/cmdlineargs.jl-497- b, a] julia-1.5.3+dfsg/test/cmdlineargs.jl:498: @test readsplit(`$exename -L $b -e 'exit(0)'`) == julia-1.5.3+dfsg/test/cmdlineargs.jl-499- [b, ""] julia-1.5.3+dfsg/test/cmdlineargs.jl:500: @test readsplit(`$exename -L $b $a`) == julia-1.5.3+dfsg/test/cmdlineargs.jl-501- [b, a, ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-503- b, a] julia-1.5.3+dfsg/test/cmdlineargs.jl:504: @test readsplit(`$exename --startup-file=yes -e 'exit(0)'`) == julia-1.5.3+dfsg/test/cmdlineargs.jl-505- [c, ""] julia-1.5.3+dfsg/test/cmdlineargs.jl:506: @test readsplit(`$exename --startup-file=yes -L $b -e 'exit(0)'`) == julia-1.5.3+dfsg/test/cmdlineargs.jl-507- [c, "", julia-1.5.3+dfsg/test/cmdlineargs.jl-508- b, ""] julia-1.5.3+dfsg/test/cmdlineargs.jl:509: @test readsplit(`$exename --startup-file=yes -L $b $a`) == julia-1.5.3+dfsg/test/cmdlineargs.jl-510- [c, a, ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-517- # issue #10562 julia-1.5.3+dfsg/test/cmdlineargs.jl:518: @test readchomp(`$exename -e 'println(ARGS);' ''`) == "[\"\"]" julia-1.5.3+dfsg/test/cmdlineargs.jl-519- julia-1.5.3+dfsg/test/cmdlineargs.jl-520- # issue #12679 julia-1.5.3+dfsg/test/cmdlineargs.jl:521: @test readchomperrors(`$exename --startup-file=no --compile=yes -ioo`) == julia-1.5.3+dfsg/test/cmdlineargs.jl-522- (false, "", "ERROR: unknown option `-o`") julia-1.5.3+dfsg/test/cmdlineargs.jl:523: @test readchomperrors(`$exename --startup-file=no -p`) == julia-1.5.3+dfsg/test/cmdlineargs.jl-524- (false, "", "ERROR: option `-p/--procs` is missing an argument") julia-1.5.3+dfsg/test/cmdlineargs.jl:525: @test readchomperrors(`$exename --startup-file=no --inline`) == julia-1.5.3+dfsg/test/cmdlineargs.jl-526- (false, "", "ERROR: option `--inline` is missing an argument") julia-1.5.3+dfsg/test/cmdlineargs.jl:527: @test readchomperrors(`$exename --startup-file=no -e "@show ARGS" -now -- julia RUN.jl`) == julia-1.5.3+dfsg/test/cmdlineargs.jl-528- (false, "", "ERROR: unknown option `-n`") ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-530- # --compiled-modules={yes|no} julia-1.5.3+dfsg/test/cmdlineargs.jl:531: @test readchomp(`$exename -E "Bool(Base.JLOptions().use_compiled_modules)"`) == "true" julia-1.5.3+dfsg/test/cmdlineargs.jl-532- @test readchomp(`$exename --compiled-modules=yes -E ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-535- "Bool(Base.JLOptions().use_compiled_modules)"`) == "false" julia-1.5.3+dfsg/test/cmdlineargs.jl:536: @test !success(`$exename --compiled-modules=foo -e "exit(0)"`) julia-1.5.3+dfsg/test/cmdlineargs.jl-537- ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-545- @test Base.current_project() === nothing julia-1.5.3+dfsg/test/cmdlineargs.jl:546: @test success(`$exename -e "exit(0)"`) julia-1.5.3+dfsg/test/cmdlineargs.jl-547- for load_path in ["", "@", "@."] julia-1.5.3+dfsg/test/cmdlineargs.jl-548- withenv("JULIA_LOAD_PATH" => load_path) do julia-1.5.3+dfsg/test/cmdlineargs.jl:549: @test success(`$exename -e "exit(!(Base.load_path() == []))"`) julia-1.5.3+dfsg/test/cmdlineargs.jl-550- end ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-574- let err = Pipe(), julia-1.5.3+dfsg/test/cmdlineargs.jl:575: p = run(pipeline(`$exename --sysimage=$nonexist_image`, stderr=err), wait=false) julia-1.5.3+dfsg/test/cmdlineargs.jl-576- close(err.in) ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-587- let err = Pipe(), julia-1.5.3+dfsg/test/cmdlineargs.jl:588: p = run(pipeline(`$exename --sysimage=$libjulia`, stderr=err), wait=false) julia-1.5.3+dfsg/test/cmdlineargs.jl-589- close(err.in) ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-602- JL_OPTIONS_STARTUPFILE_OFF = 2 julia-1.5.3+dfsg/test/cmdlineargs.jl:603: # `HOME=$tmpdir` to avoid errors in the user startup.jl, which hangs the tests. Issue #17642 julia-1.5.3+dfsg/test/cmdlineargs.jl-604- mktempdir() do tmpdir julia-1.5.3+dfsg/test/cmdlineargs.jl-605- withenv("HOME"=>tmpdir) do julia-1.5.3+dfsg/test/cmdlineargs.jl:606: @test parse(Int,readchomp(`$exename -E "Base.JLOptions().startupfile" --startup-file=yes`)) == JL_OPTIONS_STARTUPFILE_ON julia-1.5.3+dfsg/test/cmdlineargs.jl-607- end ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-611- end julia-1.5.3+dfsg/test/cmdlineargs.jl:612: @test !success(`$exename --startup-file=false`) julia-1.5.3+dfsg/test/cmdlineargs.jl-613-end ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-615-# Make sure `julia --lisp` doesn't break julia-1.5.3+dfsg/test/cmdlineargs.jl:616:run(pipeline(devnull, `$(joinpath(Sys.BINDIR, Base.julia_exename())) --lisp`, devnull)) julia-1.5.3+dfsg/test/cmdlineargs.jl-617- julia-1.5.3+dfsg/test/cmdlineargs.jl-618-# Test that `julia [some other option] --lisp` is disallowed julia-1.5.3+dfsg/test/cmdlineargs.jl:619:@test readchomperrors(`$(joinpath(Sys.BINDIR, Base.julia_exename())) -Cnative --lisp`) == julia-1.5.3+dfsg/test/cmdlineargs.jl-620- (false, "", "ERROR: --lisp must be specified as the first argument") ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-622-# --sysimage-native-code={yes|no} julia-1.5.3+dfsg/test/cmdlineargs.jl:623:let exename = `$(Base.julia_cmd()) --startup-file=no` julia-1.5.3+dfsg/test/cmdlineargs.jl-624- @test readchomp(`$exename --sysimage-native-code=yes -E ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-631-for precomp in ("yes", "no") julia-1.5.3+dfsg/test/cmdlineargs.jl:632: succ, out, bt = readchomperrors(`$(Base.julia_cmd()) --startup-file=no --sysimage-native-code=$precomp -E 'sqrt(-2)'`) julia-1.5.3+dfsg/test/cmdlineargs.jl-633- @test !succ ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-638-# PR #23002 julia-1.5.3+dfsg/test/cmdlineargs.jl:639:let exename = `$(Base.julia_cmd()) --startup-file=no` julia-1.5.3+dfsg/test/cmdlineargs.jl-640- for (mac, flag, pfix, msg) in [("@test_nowarn", ``, "_1", ""), ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-660- """ julia-1.5.3+dfsg/test/cmdlineargs.jl:661: run(`$exename $flag -e $str`) julia-1.5.3+dfsg/test/cmdlineargs.jl-662- end ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-665-# issue #6310 julia-1.5.3+dfsg/test/cmdlineargs.jl:666:let exename = `$(Base.julia_cmd()) --startup-file=no` julia-1.5.3+dfsg/test/cmdlineargs.jl-667- @test writereadpipeline("2+2", exename) == ("4\n", true) ############################################## julia-1.5.3+dfsg/test/cmdlineargs.jl-691-for yn in ("no", "yes") julia-1.5.3+dfsg/test/cmdlineargs.jl:692: exename = `$(Base.julia_cmd()) --inline=no --startup-file=no --inline=$yn` julia-1.5.3+dfsg/test/cmdlineargs.jl-693- v = writereadpipeline("Base.julia_cmd()", exename) ############################################## julia-1.5.3+dfsg/test/compiler/codegen.jl-331- write(f_22330, str_22330) julia-1.5.3+dfsg/test/compiler/codegen.jl:332: @test success(`$(Base.julia_cmd()) --startup-file=no $f_22330`) julia-1.5.3+dfsg/test/compiler/codegen.jl-333-end ############################################## julia-1.5.3+dfsg/test/compiler/codegen.jl-443- str_36422 = "using InteractiveUtils; code_llvm(Base.ht_keyindex, (Dict{NTuple{65,Int64},Nothing}, NTuple{65,Int64}))" julia-1.5.3+dfsg/test/compiler/codegen.jl:444: @test success(`$(Base.julia_cmd()) --startup-file=no -e $str_36422`) julia-1.5.3+dfsg/test/compiler/codegen.jl-445-end ############################################## julia-1.5.3+dfsg/test/compiler/inference.jl-811-let def = "Base.getindex(t::NTuple{3,NTuple{2,Int}}, i::Int, j::Int, k::Int) = (t[1][i], t[2][j], t[3][k])" julia-1.5.3+dfsg/test/compiler/inference.jl:812: @test read(`$(Base.julia_cmd()) --startup-file=no -E "$def;test(t) = t[2,1,2];test(((3,4), (5,6), (7,8)))"`, String) == julia-1.5.3+dfsg/test/compiler/inference.jl-813- "(4, 5, 8)\n" ############################################## julia-1.5.3+dfsg/test/compiler/inference.jl-1221-test_const_return(()->fieldtype(Dict{Int64,Nothing}, :age), Tuple{}, UInt) julia-1.5.3+dfsg/test/compiler/inference.jl:1222:test_const_return(@eval(()->Core.sizeof($(Array{Int,0}(undef)))), Tuple{}, sizeof(Int)) julia-1.5.3+dfsg/test/compiler/inference.jl:1223:test_const_return(@eval(()->Core.sizeof($(Matrix{Float32}(undef, 2, 2)))), Tuple{}, 4 * 2 * 2) julia-1.5.3+dfsg/test/compiler/inference.jl-1224- ############################################## julia-1.5.3+dfsg/test/compiler/inference.jl-2347- julia-1.5.3+dfsg/test/compiler/inference.jl:2348:@generated unionall_sig_generated(::Vector{T}, b::Vector{S}) where {T, S} = :($b) julia-1.5.3+dfsg/test/compiler/inference.jl-2349-@test length(code_typed(unionall_sig_generated, Tuple{Any, Vector{Int}})) == 1 ############################################## julia-1.5.3+dfsg/test/compiler/ssair.jl-84-for compile in ("min", "yes") julia-1.5.3+dfsg/test/compiler/ssair.jl:85: cmd = `$(Base.julia_cmd()) --compile=$compile interpreter_exec.jl` julia-1.5.3+dfsg/test/compiler/ssair.jl-86- if !success(pipeline(Cmd(cmd, dir=@__DIR__); stdout=stdout, stderr=stderr)) ############################################## julia-1.5.3+dfsg/test/core.jl-1157- # ensure world updates are handled correctly for simple x.y expressions: julia-1.5.3+dfsg/test/core.jl:1158: return x.x, @eval($x.x), x.x julia-1.5.3+dfsg/test/core.jl-1159-end ############################################## julia-1.5.3+dfsg/test/core.jl-2409-for f in (:Any, :Function, :(Core.Builtin), :(Union{Nothing, Type}), :(Union{typeof(+), Type}), :(Union{typeof(+), typeof(-)}), :(Base.Callable)) julia-1.5.3+dfsg/test/core.jl:2410: @test_throws ErrorException("Method dispatch is unimplemented currently for this method signature") @eval (::$f)() = 1 julia-1.5.3+dfsg/test/core.jl-2411-end ############################################## julia-1.5.3+dfsg/test/core.jl-2673-args8d003 = (:x, :y) julia-1.5.3+dfsg/test/core.jl:2674:@test eval(:(:(f($(($args8d003)...))))) == :(f(x,y)) julia-1.5.3+dfsg/test/core.jl-2675-x8d003 = Any[:y8d003] julia-1.5.3+dfsg/test/core.jl-2676-y8d003 = 777 julia-1.5.3+dfsg/test/core.jl:2677:@test eval(:(string(:(f($($(x8d003...))))))) == "f(777)" julia-1.5.3+dfsg/test/core.jl-2678- ############################################## julia-1.5.3+dfsg/test/core.jl-3446-f11858(a) = for Baz in a julia-1.5.3+dfsg/test/core.jl:3447: @eval (f::$Baz)(x) = f(float(x)) julia-1.5.3+dfsg/test/core.jl-3448-end ############################################## julia-1.5.3+dfsg/test/core.jl-4026-# issue #14758 julia-1.5.3+dfsg/test/core.jl:4027:@test isa(@eval(f14758(; $([]...)) = ()), Function) julia-1.5.3+dfsg/test/core.jl-4028- ############################################## julia-1.5.3+dfsg/test/core.jl-5425- y = 1 julia-1.5.3+dfsg/test/core.jl:5426: @eval f21568(x::AbstractArray{T,1}) where {T<:Real} = $y julia-1.5.3+dfsg/test/core.jl-5427-end ############################################## julia-1.5.3+dfsg/test/core.jl-5895- b3 = B23367[b][1] # copy b via array assignment julia-1.5.3+dfsg/test/core.jl:5896: addr(@nospecialize x) = ccall(:jl_value_ptr, Ptr{Cvoid}, (Any,), x) julia-1.5.3+dfsg/test/core.jl:5897: @test addr(b) == addr(b) julia-1.5.3+dfsg/test/core.jl:5898: # @test addr(b) == addr(b2) julia-1.5.3+dfsg/test/core.jl:5899: # @test addr(b) == addr(b3) julia-1.5.3+dfsg/test/core.jl:5900: # @test addr(b2) == addr(b3) julia-1.5.3+dfsg/test/core.jl-5901- ############################################## julia-1.5.3+dfsg/test/core.jl-6657-let x26739 = Int[1] julia-1.5.3+dfsg/test/core.jl:6658: @test eval(:(identity.($x26739))) == x26739 julia-1.5.3+dfsg/test/core.jl-6659-end ############################################## julia-1.5.3+dfsg/test/docs.jl-512- S = meta(DocVars)[@var(DocVars.S)], julia-1.5.3+dfsg/test/docs.jl:513: Tname = Markdown.parse("```\n$(curmod_prefix)DocVars.T\n```"), julia-1.5.3+dfsg/test/docs.jl:514: Sname = Markdown.parse("```\n$(curmod_prefix)DocVars.S\n```") julia-1.5.3+dfsg/test/docs.jl-515- # Splicing the expression directly doesn't work ############################################## julia-1.5.3+dfsg/test/docs.jl-620-let d = (@doc :@m2_11993), julia-1.5.3+dfsg/test/docs.jl:621: macro_doc = Markdown.parse("`$(curmod_prefix)@m2_11993` is a macro.") julia-1.5.3+dfsg/test/docs.jl-622- @test docstring_startswith(d, doc""" ############################################## julia-1.5.3+dfsg/test/docs.jl-796- julia-1.5.3+dfsg/test/docs.jl:797:Binding `$(curmod_prefix)Undocumented.bindingdoesnotexist` does not exist. julia-1.5.3+dfsg/test/docs.jl-798-""") ############################################## julia-1.5.3+dfsg/test/docs.jl-879- julia-1.5.3+dfsg/test/docs.jl:880: `$(curmod_prefix)Undocumented.f` is a `Function`. julia-1.5.3+dfsg/test/docs.jl-881- """) ############################################## julia-1.5.3+dfsg/test/docs.jl-889- julia-1.5.3+dfsg/test/docs.jl:890: `$(curmod_prefix)Undocumented.undocumented` is a `Function`. julia-1.5.3+dfsg/test/docs.jl-891- """) ############################################## julia-1.5.3+dfsg/test/exceptions.jl-375- try julia-1.5.3+dfsg/test/exceptions.jl:376: Core.eval(🏡, :(include_string($🏡, "@assert z36527 == 10"))) julia-1.5.3+dfsg/test/exceptions.jl-377- catch ex ############################################## julia-1.5.3+dfsg/test/interpreter.jl-17- """ julia-1.5.3+dfsg/test/interpreter.jl:18: @test read(`$(Base.julia_cmd()) --startup-file=no --compile=min -e $code`, String) == "42" julia-1.5.3+dfsg/test/interpreter.jl-19-end ############################################## julia-1.5.3+dfsg/test/interpreter.jl-21-let code = "Threads.atomic_add!(Threads.Atomic{Int}(40), 2)" julia-1.5.3+dfsg/test/interpreter.jl:22: @test read(`$(Base.julia_cmd()) --startup-file=no --compile=min -E $code`, String) == "40\n" julia-1.5.3+dfsg/test/interpreter.jl-23-end ############################################## julia-1.5.3+dfsg/test/interpreter.jl-25-let p = Pipe(), julia-1.5.3+dfsg/test/interpreter.jl:26: c = pipeline(`$(Base.julia_cmd()) --startup-file=no --compile=min -E 'error()'`, stderr=p) julia-1.5.3+dfsg/test/interpreter.jl-27- proc = run(c, wait=false) ############################################## julia-1.5.3+dfsg/test/loading.jl-48-@test !endswith(@__DIR__, Base.Filesystem.path_separator) julia-1.5.3+dfsg/test/loading.jl:49:let exename = `$(Base.julia_cmd()) --compiled-modules=yes --startup-file=no`, julia-1.5.3+dfsg/test/loading.jl-50- wd = sprint(show, pwd()) ############################################## julia-1.5.3+dfsg/test/loading.jl-52- @test wd != s_dir julia-1.5.3+dfsg/test/loading.jl:53: @test readchomp(`$exename -E "@__DIR__" -i`) == wd julia-1.5.3+dfsg/test/loading.jl:54: @test readchomp(`$exename -E "cd(()->eval(:(@__DIR__)), $s_dir)" -i`) == s_dir julia-1.5.3+dfsg/test/loading.jl:55: @test readchomp(`$exename -E "@__DIR__"`) == wd # non-interactive julia-1.5.3+dfsg/test/loading.jl-56- @test !endswith(wd, Base.Filesystem.path_separator) ############################################## julia-1.5.3+dfsg/test/loading.jl-593- """ julia-1.5.3+dfsg/test/loading.jl:594: @test success(`$(Base.julia_cmd()) --startup-file=no --project=foo -e $(script)`) julia-1.5.3+dfsg/test/loading.jl-595- withenv("JULIA_PROJECT" => "foo") do julia-1.5.3+dfsg/test/loading.jl:596: @test success(`$(Base.julia_cmd()) --startup-file=no -e $(script)`) julia-1.5.3+dfsg/test/loading.jl-597- end ############################################## julia-1.5.3+dfsg/test/loading.jl-611- script = "@assert startswith(Base.active_project(), $(repr(vpath)))" julia-1.5.3+dfsg/test/loading.jl:612: @test success(`$(Base.julia_cmd()) --startup-file=no -e $(script)`) julia-1.5.3+dfsg/test/loading.jl-613- end ############################################## julia-1.5.3+dfsg/test/loading.jl-628- script = "LOAD_PATH == $(repr(result)) || error()" julia-1.5.3+dfsg/test/loading.jl:629: @test success(`$(Base.julia_cmd()) --startup-file=no -e $script`) julia-1.5.3+dfsg/test/loading.jl-630- end ############################################## julia-1.5.3+dfsg/test/loading.jl-647- script = "DEPOT_PATH == $(repr(result)) || error()" julia-1.5.3+dfsg/test/loading.jl:648: @test success(`$(Base.julia_cmd()) --startup-file=no -e $script`) julia-1.5.3+dfsg/test/loading.jl-649- end ############################################## julia-1.5.3+dfsg/test/misc.jl-85- script = "$redir_err; module A; f() = 1; end; A.f() = 1" julia-1.5.3+dfsg/test/misc.jl:86: warning_str = read(`$exename --warn-overwrite=yes --startup-file=no -e $script`, String) julia-1.5.3+dfsg/test/misc.jl-87- @test occursin("f()", warning_str) ############################################## julia-1.5.3+dfsg/test/misc.jl-465- end julia-1.5.3+dfsg/test/misc.jl:466: @eval (finalizer($closefunc, zeros()); nothing) julia-1.5.3+dfsg/test/misc.jl-467- GC.gc(); GC.gc(); GC.gc(); GC.gc() ############################################## julia-1.5.3+dfsg/test/misc.jl-669-let flags = Cmd(filter(a->!occursin("depwarn", a), collect(test_exeflags))) julia-1.5.3+dfsg/test/misc.jl:670: local cmd = `$test_exename $flags --depwarn=yes deprecation_exec.jl` julia-1.5.3+dfsg/test/misc.jl-671- ############################################## julia-1.5.3+dfsg/test/misc.jl-677-# PR #23664, make sure names don't get added to the default `Main` workspace julia-1.5.3+dfsg/test/misc.jl:678:@test readlines(`$(Base.julia_cmd()) --startup-file=no -e 'foreach(println, names(Main))'`) == ["Base","Core","Main"] julia-1.5.3+dfsg/test/misc.jl-679- ############################################## julia-1.5.3+dfsg/test/numbers.jl-2535- for p in -4:4 julia-1.5.3+dfsg/test/numbers.jl:2536: v = eval(:($T(2)^$p)) julia-1.5.3+dfsg/test/numbers.jl-2537- @test 2.0^p == v ############################################## julia-1.5.3+dfsg/test/precompile.jl-239- # the module doesn't reload from the image: julia-1.5.3+dfsg/test/precompile.jl:240: @test_logs (:warn, "Replacing module `$Foo_module`") begin julia-1.5.3+dfsg/test/precompile.jl-241- ms = Base._require_from_serialized(cachefile) ############################################## julia-1.5.3+dfsg/test/precompile.jl-482- julia-1.5.3+dfsg/test/precompile.jl:483: exename = `$(Base.julia_cmd()) --compiled-modules=yes --startup-file=no` julia-1.5.3+dfsg/test/precompile.jl-484- ############################################## julia-1.5.3+dfsg/test/precompile.jl-491- julia-1.5.3+dfsg/test/precompile.jl:492: t1_yes = readchomp(`$exename --compiled-modules=yes -E $(testcode)`) julia-1.5.3+dfsg/test/precompile.jl:493: t2_yes = readchomp(`$exename --compiled-modules=yes -E $(testcode)`) julia-1.5.3+dfsg/test/precompile.jl-494- @test t1_yes == t2_yes julia-1.5.3+dfsg/test/precompile.jl-495- julia-1.5.3+dfsg/test/precompile.jl:496: t1_no = readchomp(`$exename --compiled-modules=no -E $(testcode)`) julia-1.5.3+dfsg/test/precompile.jl:497: t2_no = readchomp(`$exename --compiled-modules=no -E $(testcode)`) julia-1.5.3+dfsg/test/precompile.jl-498- @test t1_no != t2_no ############################################## julia-1.5.3+dfsg/test/precompile.jl-531- julia-1.5.3+dfsg/test/precompile.jl:532: exename = `$(Base.julia_cmd()) --startup-file=no` julia-1.5.3+dfsg/test/precompile.jl-533- let fname = tempname() ############################################## julia-1.5.3+dfsg/test/precompile.jl-535- for i = 1:2 julia-1.5.3+dfsg/test/precompile.jl:536: @test readchomp(pipeline(`$exename -E $(testcode)`, stderr=fname)) == "nothing" julia-1.5.3+dfsg/test/precompile.jl-537- @test read(fname, String) == "Iterators\n" ############################################## julia-1.5.3+dfsg/test/reinterpretarray.jl-178- istr = string(Int) julia-1.5.3+dfsg/test/reinterpretarray.jl:179: @test_throws ArgumentError("cannot reinterpret a `Tuple{$istr,$istr}` array to `$istr` when the first axis is Base.IdentityUnitRange(-1:0). Try reshaping first.") reinterpret(Int, vt) julia-1.5.3+dfsg/test/reinterpretarray.jl-180- vt = reshape(vt, 1:1, axes(vt)...) ############################################## julia-1.5.3+dfsg/test/show.jl-278-# Meta.parse(repr(:(...))) returns a double-quoted block, so we need to eval twice to unquote it julia-1.5.3+dfsg/test/show.jl:279:@test iszero(eval(eval(Meta.parse(repr(:($(1 + 2im) - $(1 + 2im))))))) julia-1.5.3+dfsg/test/show.jl-280- ############################################## julia-1.5.3+dfsg/test/show.jl-1011-@test_broken repr(:(:(f($$x856739)))) == ":(:(f(\$y856739)))" julia-1.5.3+dfsg/test/show.jl:1012:@test repr(eval(:(:(f($$x856739))))) == ":(f(2))" julia-1.5.3+dfsg/test/show.jl-1013-@test_repr repr(:(:(f($x856739)))) julia-1.5.3+dfsg/test/show.jl-1014-@test_broken repr(:(:(f($x856739)))) == ":(:(f(\$x856739)))" julia-1.5.3+dfsg/test/show.jl:1015:@test repr(eval(:(:(f($x856739))))) == ":(f(y856739))" julia-1.5.3+dfsg/test/show.jl-1016-@test_repr repr(:(:(f($(($z856739)...))))) julia-1.5.3+dfsg/test/show.jl-1017-@test_broken repr(:(:(f($(($z856739)...))))) == ":(:(f(\$([:a, :b]...))))" julia-1.5.3+dfsg/test/show.jl:1018:@test repr(eval(:(:(f($(($z856739)...)))))) == ":(f(a, b))" julia-1.5.3+dfsg/test/show.jl-1019- ############################################## julia-1.5.3+dfsg/test/show.jl-1859- # issue #27352 : No interpolating nothing into commands julia-1.5.3+dfsg/test/show.jl:1860: @test_throws ArgumentError `/bin/foo $nothing` julia-1.5.3+dfsg/test/show.jl:1861: @test_throws ArgumentError `$nothing` julia-1.5.3+dfsg/test/show.jl:1862: @test_throws ArgumentError let x = nothing; `/bin/foo $x` end julia-1.5.3+dfsg/test/show.jl-1863-end ############################################## julia-1.5.3+dfsg/test/show.jl-2025- ℓsym = gensym(:ℓ) julia-1.5.3+dfsg/test/show.jl:2026: eval(:(foo($αsym) = $αsym)) julia-1.5.3+dfsg/test/show.jl:2027: eval(:(bar($ℓsym) = $ℓsym)) julia-1.5.3+dfsg/test/show.jl-2028- @test contains(string(methods(foo)), "foo(α)") ############################################## julia-1.5.3+dfsg/test/spawn.jl-24- havebb = try # use busybox-w32 on windows, if available julia-1.5.3+dfsg/test/spawn.jl:25: success(`$busybox`) julia-1.5.3+dfsg/test/spawn.jl-26- true ############################################## julia-1.5.3+dfsg/test/spawn.jl-30- if havebb julia-1.5.3+dfsg/test/spawn.jl:31: yescmd = `$busybox yes` julia-1.5.3+dfsg/test/spawn.jl:32: echocmd = `$busybox echo` julia-1.5.3+dfsg/test/spawn.jl:33: sortcmd = `$busybox sort` julia-1.5.3+dfsg/test/spawn.jl:34: printfcmd = `$busybox printf` julia-1.5.3+dfsg/test/spawn.jl:35: truecmd = `$busybox true` julia-1.5.3+dfsg/test/spawn.jl:36: falsecmd = `$busybox false` julia-1.5.3+dfsg/test/spawn.jl:37: catcmd = `$busybox cat` julia-1.5.3+dfsg/test/spawn.jl:38: shcmd = `$busybox sh` julia-1.5.3+dfsg/test/spawn.jl:39: sleepcmd = `$busybox sleep` julia-1.5.3+dfsg/test/spawn.jl:40: lscmd = `$busybox ls` julia-1.5.3+dfsg/test/spawn.jl-41- end ############################################## julia-1.5.3+dfsg/test/spawn.jl-45- julia-1.5.3+dfsg/test/spawn.jl:46:@test read(`$echocmd hello \| sort`, String) == "hello | sort\n" julia-1.5.3+dfsg/test/spawn.jl:47:@test read(pipeline(`$echocmd hello`, sortcmd), String) == "hello\n" julia-1.5.3+dfsg/test/spawn.jl:48:@test length(run(pipeline(`$echocmd hello`, sortcmd), wait=false).processes) == 2 julia-1.5.3+dfsg/test/spawn.jl-49- julia-1.5.3+dfsg/test/spawn.jl:50:out = read(`$echocmd hello` & `$echocmd world`, String) julia-1.5.3+dfsg/test/spawn.jl-51-@test occursin("world", out) julia-1.5.3+dfsg/test/spawn.jl-52-@test occursin("hello", out) julia-1.5.3+dfsg/test/spawn.jl:53:@test read(pipeline(`$echocmd hello` & `$echocmd world`, sortcmd), String) == "hello\nworld\n" julia-1.5.3+dfsg/test/spawn.jl-54- julia-1.5.3+dfsg/test/spawn.jl:55:@test (run(`$printfcmd " \033[34m[stdio passthrough ok]\033[0m\n"`); true) julia-1.5.3+dfsg/test/spawn.jl-56- ############################################## julia-1.5.3+dfsg/test/spawn.jl-72-if Sys.isunix() julia-1.5.3+dfsg/test/spawn.jl:73: prefixer(prefix, sleep) = `sh -c "while IFS= read REPLY; do echo '$prefix ' \$REPLY; sleep $sleep; done"` julia-1.5.3+dfsg/test/spawn.jl:74: @test success(pipeline(`sh -c "for i in 1 2 3 4 5 6 7 8 9 10; do echo \$i; sleep 0.1; done"`, julia-1.5.3+dfsg/test/spawn.jl-75- prefixer("A", 0.2) & prefixer("B", 0.2))) julia-1.5.3+dfsg/test/spawn.jl:76: @test success(pipeline(`sh -c "for i in 1 2 3 4 5 6 7 8 9 10; do echo \$i; sleep 0.1; done"`, julia-1.5.3+dfsg/test/spawn.jl-77- prefixer("X", 0.3) & prefixer("Y", 0.3) & prefixer("Z", 0.3), ############################################## julia-1.5.3+dfsg/test/spawn.jl-92-let file = tempname() julia-1.5.3+dfsg/test/spawn.jl:93: run(pipeline(`$echocmd hello world`, file)) julia-1.5.3+dfsg/test/spawn.jl-94- @test read(pipeline(file, catcmd), String) == "hello world\n" ############################################## julia-1.5.3+dfsg/test/spawn.jl-112- sock = connect(fetch(r)) julia-1.5.3+dfsg/test/spawn.jl:113: run(pipeline(`$echocmd hello world`, sock)) julia-1.5.3+dfsg/test/spawn.jl-114- close(sock) ############################################## julia-1.5.3+dfsg/test/spawn.jl-120- julia-1.5.3+dfsg/test/spawn.jl:121:@test read(setenv(`$shcmd -c "echo \$TEST"`,["TEST=Hello World"]), String) == "Hello World\n" julia-1.5.3+dfsg/test/spawn.jl:122:@test read(setenv(`$shcmd -c "echo \$TEST"`,Dict("TEST"=>"Hello World")), String) == "Hello World\n" julia-1.5.3+dfsg/test/spawn.jl:123:@test read(setenv(`$shcmd -c "echo \$TEST"`,"TEST"=>"Hello World"), String) == "Hello World\n" julia-1.5.3+dfsg/test/spawn.jl-124-@test (withenv("TEST"=>"Hello World") do julia-1.5.3+dfsg/test/spawn.jl:125: read(`$shcmd -c "echo \$TEST"`, String); end) == "Hello World\n" julia-1.5.3+dfsg/test/spawn.jl:126:let pathA = readchomp(setenv(`$shcmd -c "pwd -P"`;dir="..")), julia-1.5.3+dfsg/test/spawn.jl:127: pathB = readchomp(setenv(`$shcmd -c "cd .. && pwd -P"`)) julia-1.5.3+dfsg/test/spawn.jl-128- if Sys.iswindows() ############################################## julia-1.5.3+dfsg/test/spawn.jl-142- @sync begin julia-1.5.3+dfsg/test/spawn.jl:143: proc = open(`$catcmd -`, "r+") julia-1.5.3+dfsg/test/spawn.jl-144- @async begin ############################################## julia-1.5.3+dfsg/test/spawn.jl-153- file = tempname() julia-1.5.3+dfsg/test/spawn.jl:154: open(pipeline(`$catcmd -`, file), "w") do io julia-1.5.3+dfsg/test/spawn.jl-155- write(io, str) ############################################## julia-1.5.3+dfsg/test/spawn.jl-170- end julia-1.5.3+dfsg/test/spawn.jl:171: p = run(`$sleepcmd 1`, wait=false) julia-1.5.3+dfsg/test/spawn.jl-172- wait(p) ############################################## julia-1.5.3+dfsg/test/spawn.jl-220- # valgrind banner here, not "Hello World\n". julia-1.5.3+dfsg/test/spawn.jl:221: @test read(pipeline(`$exename --startup-file=no -e 'println(stderr,"Hello World")'`, stderr=catcmd), String) == "Hello World\n" julia-1.5.3+dfsg/test/spawn.jl-222- out = Pipe() julia-1.5.3+dfsg/test/spawn.jl:223: proc = run(pipeline(`$exename --startup-file=no -e 'println(stderr,"Hello World")'`, stderr = out), wait=false) julia-1.5.3+dfsg/test/spawn.jl-224- close(out.in) ############################################## julia-1.5.3+dfsg/test/spawn.jl-230-let out = Pipe(), julia-1.5.3+dfsg/test/spawn.jl:231: proc = run(pipeline(`$exename --startup-file=no -e 'println(getpid())'`, stdout=IOContext(out, :foo => :bar)), wait=false) julia-1.5.3+dfsg/test/spawn.jl-232- # < don't block here before getpid call > ############################################## julia-1.5.3+dfsg/test/spawn.jl-281- try julia-1.5.3+dfsg/test/spawn.jl:282: io = open(pipeline(`$exename --startup-file=no`, stderr=stderr), "w") julia-1.5.3+dfsg/test/spawn.jl-283- write(io, cmd) ############################################## julia-1.5.3+dfsg/test/spawn.jl-294-let bad = "bad\0name" julia-1.5.3+dfsg/test/spawn.jl:295: @test_throws ArgumentError run(`$bad`) julia-1.5.3+dfsg/test/spawn.jl:296: @test_throws ArgumentError run(`$echocmd $bad`) julia-1.5.3+dfsg/test/spawn.jl:297: @test_throws ArgumentError run(setenv(`$echocmd hello`, bad=>"good")) julia-1.5.3+dfsg/test/spawn.jl:298: @test_throws ArgumentError run(setenv(`$echocmd hello`, "good"=>bad)) julia-1.5.3+dfsg/test/spawn.jl-299-end ############################################## julia-1.5.3+dfsg/test/spawn.jl-301-# issue #12829 julia-1.5.3+dfsg/test/spawn.jl:302:let out = Pipe(), echo = `$exename --startup-file=no -e 'print(stdout, " 1\t", read(stdin, String))'`, ready = Condition(), t, infd, outfd julia-1.5.3+dfsg/test/spawn.jl-303- @test_throws ArgumentError write(out, "not open error") ############################################## julia-1.5.3+dfsg/test/spawn.jl-374- $(if havebb julia-1.5.3+dfsg/test/spawn.jl:375: "cmd = pipeline(`\$$(repr(busybox)) echo asdf`, `\$$(repr(busybox)) cat`)" julia-1.5.3+dfsg/test/spawn.jl-376- else ############################################## julia-1.5.3+dfsg/test/spawn.jl-382- """ julia-1.5.3+dfsg/test/spawn.jl:383: @test success(pipeline(`$catcmd $fname`, `$exename --startup-file=no -e $code`)) julia-1.5.3+dfsg/test/spawn.jl-384- rm(fname) ############################################## julia-1.5.3+dfsg/test/spawn.jl-406-let cmd = ["foo bar", "baz", "a'b", "a\"b", "a\"b\"c", "-L/usr/+", "a=b", "``", "\$", "&&", "", "z"] julia-1.5.3+dfsg/test/spawn.jl:407: @test string(`$cmd`) == julia-1.5.3+dfsg/test/spawn.jl:408: """`'foo bar' baz "a'b" 'a"b' 'a"b"c' -L/usr/+ a=b \\`\\` '\$' '&&' '' z`""" julia-1.5.3+dfsg/test/spawn.jl:409: @test Base.shell_escape(`$cmd`) == julia-1.5.3+dfsg/test/spawn.jl-410- """'foo bar' baz "a'b" 'a"b' 'a"b"c' -L/usr/+ a=b `` '\$' && '' z""" julia-1.5.3+dfsg/test/spawn.jl:411: @test Base.shell_escape_posixly(`$cmd`) == julia-1.5.3+dfsg/test/spawn.jl-412- """'foo bar' baz a\\'b a\\"b 'a"b"c' -L/usr/+ a=b '``' '\$' '&&' '' z""" ############################################## julia-1.5.3+dfsg/test/spawn.jl-414-let cmd = ["foo=bar", "baz"] julia-1.5.3+dfsg/test/spawn.jl:415: @test string(`$cmd`) == "`foo=bar baz`" julia-1.5.3+dfsg/test/spawn.jl:416: @test Base.shell_escape(`$cmd`) == "foo=bar baz" julia-1.5.3+dfsg/test/spawn.jl:417: @test Base.shell_escape_posixly(`$cmd`) == "'foo=bar' baz" julia-1.5.3+dfsg/test/spawn.jl-418-end ############################################## julia-1.5.3+dfsg/test/spawn.jl-423-# Test failing commands julia-1.5.3+dfsg/test/spawn.jl:424:failing_cmd = `$catcmd _doesnt_exist__111_` julia-1.5.3+dfsg/test/spawn.jl-425-failing_pipeline = pipeline(failing_cmd, stderr=devnull) # make quiet for tests ############################################## julia-1.5.3+dfsg/test/spawn.jl-450-@test Base.Cmd(`lsof -i :9090`) == Base.Cmd(`lsof -i :9090`) julia-1.5.3+dfsg/test/spawn.jl:451:@test Base.Cmd(`$echocmd test`) == Base.Cmd(`$echocmd test`) julia-1.5.3+dfsg/test/spawn.jl:452:@test Base.Cmd(``) != Base.Cmd(`$echocmd test`) julia-1.5.3+dfsg/test/spawn.jl-453-@test Base.Cmd(``, ignorestatus=true) != Base.Cmd(``, ignorestatus=false) ############################################## julia-1.5.3+dfsg/test/spawn.jl-460-let c = setenv(`x`, "A"=>true) julia-1.5.3+dfsg/test/spawn.jl:461: @test (`$c a`).env == String["A=true"] julia-1.5.3+dfsg/test/spawn.jl:462: @test (`"$c" a`).env == String["A=true"] julia-1.5.3+dfsg/test/spawn.jl:463: @test_throws ArgumentError `a $c` julia-1.5.3+dfsg/test/spawn.jl:464: @test (`$(c.exec) a`).env === nothing julia-1.5.3+dfsg/test/spawn.jl:465: @test_throws ArgumentError `"$c "` julia-1.5.3+dfsg/test/spawn.jl-466-end ############################################## julia-1.5.3+dfsg/test/spawn.jl-469-let var = "x", vars="z" julia-1.5.3+dfsg/test/spawn.jl:470: @test `ls $var` == Cmd(["ls", "x"]) julia-1.5.3+dfsg/test/spawn.jl:471: @test `ls $vars` == Cmd(["ls", "z"]) julia-1.5.3+dfsg/test/spawn.jl:472: @test `ls $var"y"` == Cmd(["ls", "xy"]) julia-1.5.3+dfsg/test/spawn.jl:473: @test `ls "'$var'"` == Cmd(["ls", "'x'"]) julia-1.5.3+dfsg/test/spawn.jl:474: @test `ls $var "y"` == Cmd(["ls", "x", "y"]) julia-1.5.3+dfsg/test/spawn.jl-475-end ############################################## julia-1.5.3+dfsg/test/spawn.jl-477-# equality tests for AndCmds julia-1.5.3+dfsg/test/spawn.jl:478:@test Base.AndCmds(`$echocmd abc`, `$echocmd def`) == Base.AndCmds(`$echocmd abc`, `$echocmd def`) julia-1.5.3+dfsg/test/spawn.jl:479:@test Base.AndCmds(`$echocmd abc`, `$echocmd def`) != Base.AndCmds(`$echocmd abc`, `$echocmd xyz`) julia-1.5.3+dfsg/test/spawn.jl-480- ############################################## julia-1.5.3+dfsg/test/spawn.jl-483-@test_throws ArgumentError run(Base.AndCmds(``, ``)) julia-1.5.3+dfsg/test/spawn.jl:484:@test_throws ArgumentError run(Base.AndCmds(``, `$truecmd`)) julia-1.5.3+dfsg/test/spawn.jl:485:@test_throws ArgumentError run(Base.AndCmds(`$truecmd`, ``)) julia-1.5.3+dfsg/test/spawn.jl-486- ############################################## julia-1.5.3+dfsg/test/spawn.jl-489-@test_throws ArgumentError reduce(&, Base.Cmd[]) julia-1.5.3+dfsg/test/spawn.jl:490:@test reduce(&, [`$echocmd abc`, `$echocmd def`, `$echocmd hij`]) == `$echocmd abc` & `$echocmd def` & `$echocmd hij` julia-1.5.3+dfsg/test/spawn.jl-491- julia-1.5.3+dfsg/test/spawn.jl-492-# readlines(::Cmd), accidentally broken in #20203 julia-1.5.3+dfsg/test/spawn.jl:493:@test sort(readlines(`$lscmd -A`)) == sort(readdir()) julia-1.5.3+dfsg/test/spawn.jl-494- ############################################## julia-1.5.3+dfsg/test/spawn.jl-533-# `kill` error conditions julia-1.5.3+dfsg/test/spawn.jl:534:let p = run(`$sleepcmd 100`, wait=false) julia-1.5.3+dfsg/test/spawn.jl-535- # Should throw on invalid signals ############################################## julia-1.5.3+dfsg/test/spawn.jl-549-let julia-1.5.3+dfsg/test/spawn.jl:550: cmd = `$exename --startup-file=no -e 'finalizer(x->@info(x), "Hello")'` julia-1.5.3+dfsg/test/spawn.jl-551- output = readchomp(pipeline(cmd, stderr=catcmd)) ############################################## julia-1.5.3+dfsg/test/spawn.jl-644-# Issue #27550: make sure `peek` works when slurping a Char from an AbstractPipe julia-1.5.3+dfsg/test/spawn.jl:645:open(`$catcmd`, "r+") do f julia-1.5.3+dfsg/test/spawn.jl-646- t = @async begin ############################################## julia-1.5.3+dfsg/test/spawn.jl-656- redirect_stderr(io) do julia-1.5.3+dfsg/test/spawn.jl:657: @test_throws ProcessFailedException open(identity, `$catcmd _doesnt_exist__111_`, read=true) julia-1.5.3+dfsg/test/spawn.jl-658- end ############################################## julia-1.5.3+dfsg/test/stack_overflow.jl-16-let exename = Base.julia_cmd() julia-1.5.3+dfsg/test/stack_overflow.jl:17: @show readchomperrors(`$exename -e "f() = f(); f()"`) julia-1.5.3+dfsg/test/stack_overflow.jl:18: @show readchomperrors(`$exename -e "f() = f(); fetch(@schedule f())"`) julia-1.5.3+dfsg/test/stack_overflow.jl-19-end ############################################## julia-1.5.3+dfsg/test/stress.jl-6- # we might saturate kernel resources (See #23143) julia-1.5.3+dfsg/test/stress.jl:7: run(`sh -c "ulimit -n 100; $(Base.shell_escape(Base.julia_cmd())) --startup-file=no $(joinpath(@__DIR__, "stress_fd_exec.jl"))"`) julia-1.5.3+dfsg/test/stress.jl-8-end ############################################## julia-1.5.3+dfsg/test/stress.jl-13- fn = tempname() julia-1.5.3+dfsg/test/stress.jl:14: run(`mkfifo $fn`) julia-1.5.3+dfsg/test/stress.jl-15- # use subprocess to write 127 bytes to FIFO ############################################## julia-1.5.3+dfsg/test/stress.jl-28- """ julia-1.5.3+dfsg/test/stress.jl:29: p = open(pipeline(`$(Base.julia_cmd()) --startup-file=no -e $writer_cmds`, stderr=stderr), "w") julia-1.5.3+dfsg/test/stress.jl-30- # quickly read FIFO, draining it and blocking but not failing with EOFError yet ############################################## julia-1.5.3+dfsg/test/stress.jl-49- fn = tempname() julia-1.5.3+dfsg/test/stress.jl:50: run(`mkfifo $fn`) julia-1.5.3+dfsg/test/stress.jl-51- ############################################## julia-1.5.3+dfsg/test/stress.jl-59- """ julia-1.5.3+dfsg/test/stress.jl:60: cmd = `$(Base.julia_cmd()) --startup-file=no -e $script` julia-1.5.3+dfsg/test/stress.jl-61- p = open(pipeline(cmd, stderr=stderr), "w") ############################################## julia-1.5.3+dfsg/test/syntax.jl-757-@test :(x"s"flag) == :(@x_str "s" "flag") julia-1.5.3+dfsg/test/syntax.jl:758:@test :(x"s\"`\x\$\\") == :(@x_str "s\"`\\x\\\$\\") julia-1.5.3+dfsg/test/syntax.jl-759-@test :(x`s`) == :(@x_cmd "s") julia-1.5.3+dfsg/test/syntax.jl-760-@test :(x`s`flag) == :(@x_cmd "s" "flag") julia-1.5.3+dfsg/test/syntax.jl:761:@test :(x`s\`"\x\$\\`) == :(@x_cmd "s`\"\\x\\\$\\") julia-1.5.3+dfsg/test/syntax.jl-762- ############################################## julia-1.5.3+dfsg/test/syntax.jl-1121-# issue #23173 julia-1.5.3+dfsg/test/syntax.jl:1122:@test_throws ErrorException("invalid module path") eval(:(import $(:.))) julia-1.5.3+dfsg/test/syntax.jl-1123- ############################################## julia-1.5.3+dfsg/test/syntax.jl-1142-# preserve QuoteNode and LineNumberNode julia-1.5.3+dfsg/test/syntax.jl:1143:@test eval(Expr(:quote, QuoteNode(Expr(:tuple, 1, Expr(:$, :(1+2)))))) == QuoteNode(Expr(:tuple, 1, 3)) julia-1.5.3+dfsg/test/syntax.jl:1144:@test eval(Expr(:quote, Expr(:line, Expr(:$, :(1+2))))) === LineNumberNode(3, nothing) julia-1.5.3+dfsg/test/syntax.jl-1145-# splicing at the top level should be an error julia-1.5.3+dfsg/test/syntax.jl-1146-xs23917 = [1,2,3] julia-1.5.3+dfsg/test/syntax.jl:1147:@test_throws ErrorException eval(:(:($(xs23917...)))) julia-1.5.3+dfsg/test/syntax.jl:1148:let ex2 = eval(:(:(:($$(xs23917...))))) julia-1.5.3+dfsg/test/syntax.jl-1149- @test ex2 isa Expr julia-1.5.3+dfsg/test/syntax.jl-1150- @test_throws ErrorException eval(ex2) julia-1.5.3+dfsg/test/syntax.jl:1151: @test eval(:($(xs23917...),)) == (1,2,3) # adding a comma gives a tuple julia-1.5.3+dfsg/test/syntax.jl-1152-end ############################################## julia-1.5.3+dfsg/test/syntax.jl-1192-# misplaced top-level expressions julia-1.5.3+dfsg/test/syntax.jl:1193:@test_throws ErrorException("syntax: \"\$\" expression outside quote") Core.eval(@__MODULE__, Meta.parse("x->\$x")) julia-1.5.3+dfsg/test/syntax.jl-1194-@test Meta.lower(@__MODULE__, Expr(:$, :x)) == Expr(:error, "\"\$\" expression outside quote") ############################################## julia-1.5.3+dfsg/test/syntax.jl-1619-@test (@macroexpand @foo28244(kw)) == Expr(:call, GlobalRef(@__MODULE__,:bar), Expr(:kw)) julia-1.5.3+dfsg/test/syntax.jl:1620:@test eval(:(@macroexpand @foo28244($(Symbol("let"))))) == Expr(:error, "malformed expression") julia-1.5.3+dfsg/test/syntax.jl-1621- ############################################## julia-1.5.3+dfsg/test/syntax.jl-1870-@test_throws UndefVarError eval(Symbol("")) julia-1.5.3+dfsg/test/syntax.jl:1871:@test_throws UndefVarError eval(:(1+$(Symbol("")))) julia-1.5.3+dfsg/test/syntax.jl-1872- ############################################## julia-1.5.3+dfsg/test/testdefs.jl-12- mod_name = Symbol("Test", rand(1:100), "Main_", replace(name, '/' => '_')) julia-1.5.3+dfsg/test/testdefs.jl:13: m = @eval(Main, module $mod_name end) julia-1.5.3+dfsg/test/testdefs.jl-14- else ############################################## julia-1.5.3+dfsg/test/testdefs.jl-24- $seed != nothing && Random.seed!($seed) julia-1.5.3+dfsg/test/testdefs.jl:25: include($"$path.jl") julia-1.5.3+dfsg/test/testdefs.jl-26- end ############################################## julia-1.5.3+dfsg/test/testenv.jl-10- if haskey(ENV, "JULIA_TEST_EXEFLAGS") julia-1.5.3+dfsg/test/testenv.jl:11: const test_exeflags = `$(Base.shell_split(ENV["JULIA_TEST_EXEFLAGS"]))` julia-1.5.3+dfsg/test/testenv.jl-12- else ############################################## julia-1.5.3+dfsg/test/testenv.jl-23- popfirst!(test_exeflags.exec) julia-1.5.3+dfsg/test/testenv.jl:24: const test_exename = `$(Base.shell_split(ENV["JULIA_TEST_EXENAME"]))` julia-1.5.3+dfsg/test/testenv.jl-25- else ############################################## julia-1.5.3+dfsg/test/testhelpers/Furlongs.jl-38-Base.abs(x::Furlong{p}) where {p} = Furlong{p}(abs(x.val)) julia-1.5.3+dfsg/test/testhelpers/Furlongs.jl:39:@generated Base.abs2(x::Furlong{p}) where {p} = :(Furlong{$(canonical_p(2p))}(abs2(x.val))) julia-1.5.3+dfsg/test/testhelpers/Furlongs.jl:40:@generated Base.inv(x::Furlong{p}) where {p} = :(Furlong{$(canonical_p(-p))}(inv(x.val))) julia-1.5.3+dfsg/test/testhelpers/Furlongs.jl-41- ############################################## julia-1.5.3+dfsg/test/testhelpers/Furlongs.jl-45-for f in (:real,:imag,:complex,:+,:-) julia-1.5.3+dfsg/test/testhelpers/Furlongs.jl:46: @eval Base.$f(x::Furlong{p}) where {p} = Furlong{p}($f(x.val)) julia-1.5.3+dfsg/test/testhelpers/Furlongs.jl-47-end ############################################## julia-1.5.3+dfsg/test/testhelpers/Furlongs.jl-56-for op in (:(==), :(!=), :<, :<=, :isless, :isequal) julia-1.5.3+dfsg/test/testhelpers/Furlongs.jl:57: @eval $op(x::Furlong{p}, y::Furlong{p}) where {p} = $op(x.val, y.val) julia-1.5.3+dfsg/test/testhelpers/Furlongs.jl-58-end ############################################## julia-1.5.3+dfsg/test/testhelpers/Furlongs.jl-69- $eop($op(x.val, y.val),x,y) julia-1.5.3+dfsg/test/testhelpers/Furlongs.jl:70: $op(x::Furlong{p}, y::S) where {p,S<:Number} = $op(x,Furlong{0,S}(y)) julia-1.5.3+dfsg/test/testhelpers/Furlongs.jl:71: $op(x::S, y::Furlong{p}) where {p,S<:Number} = $op(Furlong{0,S}(x),y) julia-1.5.3+dfsg/test/testhelpers/Furlongs.jl-72- end ############################################## julia-1.5.3+dfsg/test/testhelpers/Furlongs.jl-77- @eval begin julia-1.5.3+dfsg/test/testhelpers/Furlongs.jl:78: $op(x::Furlong{p}, y::Furlong) where {p} = Furlong{p}($op(x.val, y.val)) julia-1.5.3+dfsg/test/testhelpers/Furlongs.jl:79: $op(x::Furlong{p}, y::Number) where {p} = Furlong{p}($op(x.val, y)) julia-1.5.3+dfsg/test/testhelpers/Furlongs.jl-80- end ############################################## julia-1.5.3+dfsg/test/threads.jl-2- julia-1.5.3+dfsg/test/threads.jl:3:let cmd = `$(Base.julia_cmd()) --depwarn=error --startup-file=no threads_exec.jl` julia-1.5.3+dfsg/test/threads.jl-4- for test_nthreads in (1, 2, 4, 4) # run once to try single-threaded mode, then try a couple times to trigger bad races ############################################## julia-1.5.3+dfsg/test/threads.jl-10-if Sys.islinux() && Sys.CPU_THREADS > 1 && Sys.which("taskset") !== nothing julia-1.5.3+dfsg/test/threads.jl:11: run_with_affinity(spec) = readchomp(`taskset -c $spec $(Base.julia_cmd()) -e "run(\`taskset -p \$(getpid())\`)"`) julia-1.5.3+dfsg/test/threads.jl-12- @test endswith(run_with_affinity("1"), "2") ############################################## julia-1.5.3+dfsg/test/threads.jl-114-""" julia-1.5.3+dfsg/test/threads.jl:115:proc = open(pipeline(`$(Base.julia_cmd()) -e $cmd`; stderr=stderr); write=true) julia-1.5.3+dfsg/test/threads.jl-116- ############################################## julia-1.5.3+dfsg/test/threads_exec.jl-832- x = 2 julia-1.5.3+dfsg/test/threads_exec.jl:833: @test @eval(fetch(@async 2+$x)) == 4 julia-1.5.3+dfsg/test/threads_exec.jl-834-end ############################################## julia-1.5.3+dfsg/test/file.jl-74- julia-1.5.3+dfsg/test/file.jl:75:child_eval(code::String) = eval(Meta.parse(readchomp(`$(Base.julia_cmd()) -E $code`))) julia-1.5.3+dfsg/test/file.jl-76- ############################################## julia-1.5.3+dfsg/test/read.jl-112- write(filename, text) julia-1.5.3+dfsg/test/read.jl:113: open(`$(Sys.iswindows() ? "type" : "cat") $filename`)[1] julia-1.5.3+dfsg/test/read.jl:114:# Was open(`echo -n $text`)[1] julia-1.5.3+dfsg/test/read.jl-115-# See https://github.com/JuliaLang/julia/issues/14747 ############################################## julia-1.5.3+dfsg/ui/Makefile-49-$(BUILDDIR)/julia_res.o: $(JULIAHOME)/contrib/windows/julia.rc $(JULIAHOME)/VERSION julia-1.5.3+dfsg/ui/Makefile:50: JLVER=`cat $(JULIAHOME)/VERSION` && \ julia-1.5.3+dfsg/ui/Makefile-51- JLVERi=`echo $$JLVER | perl -nle \ ############################################## julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/docs/Showcase/src/Showcase.jl-61-""" julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/docs/Showcase/src/Showcase.jl:62:A different method for [`$(FUNCTIONNAME)`](@ref). [`SIGNATURES`](@ref) abbreviation: julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/docs/Showcase/src/Showcase.jl-63- ############################################## julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/src/DocStringExtensions.jl-50- julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/src/DocStringExtensions.jl:51:`\$(SIGNATURES)` will be replaced in the above docstring with julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/src/DocStringExtensions.jl-52- ############################################## julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/src/abbreviations.jl-20-""" julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/src/abbreviations.jl:21:format(abbr, buf, doc) = error("`format` not implemented for `$typeof(abbr)`.") julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/src/abbreviations.jl-22- ############################################## julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/src/abbreviations.jl-277- local URL = url(method) julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/src/abbreviations.jl:278: isempty(URL) || println(buf, "defined at [`$path:$line`]($URL).") julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/src/abbreviations.jl-279- end ############################################## julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/src/abbreviations.jl-429- julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/src/abbreviations.jl:430:Users should define their own methods for `$(FUNCTIONNAME)`. julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/src/abbreviations.jl-431-\""" ############################################## julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/src/templates.jl-84- Meta.isexpr(tuple, :tuple) || error("invalid `@template` syntax on LHS.") julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/src/templates.jl:85: isdefined(mod, TEMP_SYM) || Core.eval(mod, :(const $(TEMP_SYM) = $(Dict{Symbol, Vector}()))) julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/src/templates.jl-86- local block = Expr(:block) ############################################## julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/test/tests.jl-272- @testset "templates" begin julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/test/tests.jl:273: let fmt = expr -> Markdown.plain(eval(:(@doc $expr))) julia-1.5.3+dfsg/debian/embedded/DocStringExtensions/test/tests.jl-274- @test occursin("(DEFAULT)", fmt(:(TemplateTests.K))) ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/CHANGELOG.md-82- julia-1.5.3+dfsg/debian/embedded/Documenter/CHANGELOG.md:83:* ![Enhancement][badge-enhancement] Non-standard admonition categories are (again) applied to the admonition `<div>` elements in HTML output (as `is-category-$category`). ([#1279][github-1279], [#1280][github-1280]) julia-1.5.3+dfsg/debian/embedded/Documenter/CHANGELOG.md-84- ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/assets/html/scss/documenter-dark.scss-3-// https://jenil.github.io/bulmaswatch/, https://github.com/jenil/bulmaswatch julia-1.5.3+dfsg/debian/embedded/Documenter/assets/html/scss/documenter-dark.scss:4:$themename: "documenter-dark"; // CSS file must be called `$(themename).css` julia-1.5.3+dfsg/debian/embedded/Documenter/assets/html/scss/documenter-dark.scss-5- ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/docs/src/man/hosting.md-224- To work around that, TagBot should be [configured to use `DOCUMENTER_KEY`](https://github.com/marketplace/actions/julia-tagbot#ssh-deploy-keys) julia-1.5.3+dfsg/debian/embedded/Documenter/docs/src/man/hosting.md:225: for authentication, by adding `ssh: ${{ secrets.DOCUMENTER_KEY }}` to the `with` section. julia-1.5.3+dfsg/debian/embedded/Documenter/docs/src/man/hosting.md-226- A complete TagBot workflow file could look as follows: ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/CrossReferences.jl-124- push!(doc.internal.errors, :cross_references) julia-1.5.3+dfsg/debian/embedded/Documenter/src/CrossReferences.jl:125: @warn "unable to parse the reference '[`$code`](@ref)' in $(Utilities.locrepr(page.source))." julia-1.5.3+dfsg/debian/embedded/Documenter/src/CrossReferences.jl-126- return ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/CrossReferences.jl-136- push!(doc.internal.errors, :cross_references) julia-1.5.3+dfsg/debian/embedded/Documenter/src/CrossReferences.jl:137: @warn "unable to get the binding for '[`$code`](@ref)' in $(Utilities.locrepr(page.source)) from expression '$(repr(ex))' in module $(mod)" exception = err julia-1.5.3+dfsg/debian/embedded/Documenter/src/CrossReferences.jl-138- return ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/CrossReferences.jl-145- push!(doc.internal.errors, :cross_references) julia-1.5.3+dfsg/debian/embedded/Documenter/src/CrossReferences.jl:146: @warn "unable to evaluate the type signature for '[`$code`](@ref)' in $(Utilities.locrepr(page.source)) from expression '$(repr(ex))' in module $(mod)" exception = err julia-1.5.3+dfsg/debian/embedded/Documenter/src/CrossReferences.jl-147- return ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/CrossReferences.jl-159- push!(doc.internal.errors, :cross_references) julia-1.5.3+dfsg/debian/embedded/Documenter/src/CrossReferences.jl:160: @warn "no doc found for reference '[`$code`](@ref)' in $(Utilities.locrepr(page.source))." julia-1.5.3+dfsg/debian/embedded/Documenter/src/CrossReferences.jl-161- end ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Deps.jl-31-""" julia-1.5.3+dfsg/debian/embedded/Documenter/src/Deps.jl:32:pip(deps...) = () -> map(dep -> run(`pip install --user $(dep)`), deps) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Deps.jl-33- ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/DocChecks.jl-203- null_file = @static Sys.iswindows() ? "nul" : "/dev/null" julia-1.5.3+dfsg/debian/embedded/Documenter/src/DocChecks.jl:204: cmd = `curl $(method === :HEAD ? "-sI" : "-s") --proto =http,https,ftp,ftps $(link.url) --max-time $timeout -o $null_file --write-out "%{http_code} %{url_effective} %{redirect_url}"` julia-1.5.3+dfsg/debian/embedded/Documenter/src/DocChecks.jl-205- ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/DocMeta.jl-36- @debug "Creating documentation metadata dictionary (META=$META) in $m" julia-1.5.3+dfsg/debian/embedded/Documenter/src/DocMeta.jl:37: Core.eval(m, :(const $META = $(METATYPE()))) julia-1.5.3+dfsg/debian/embedded/Documenter/src/DocMeta.jl-38- push!(METAMODULES, m) ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/DocSystem.jl-27-""" julia-1.5.3+dfsg/debian/embedded/Documenter/src/DocSystem.jl:28:binding(any::Any) = throw(ArgumentError("cannot convert `$(repr(any))` to a `Binding`.")) julia-1.5.3+dfsg/debian/embedded/Documenter/src/DocSystem.jl-29- ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/DocSystem.jl-65- Meta.isexpr(x, :where) ? binding(m, x.args[1].args[1]) : julia-1.5.3+dfsg/debian/embedded/Documenter/src/DocSystem.jl:66: error("`binding` cannot understand expression `$x`.") julia-1.5.3+dfsg/debian/embedded/Documenter/src/DocSystem.jl-67- ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/DocTests.jl-99- push!(ctx.doc.internal.errors, :meta_block) julia-1.5.3+dfsg/debian/embedded/Documenter/src/DocTests.jl:100: @warn "Failed to evaluate `$(strip(str))` in `@meta` block." err julia-1.5.3+dfsg/debian/embedded/Documenter/src/DocTests.jl-101- end ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl-537- if sshconfig !== nothing julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl:538: run(`git config core.sshCommand "ssh -F $(sshconfig)"`) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl-539- end ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl-541- # Fetch from remote and checkout the branch. julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl:542: run(`git remote add upstream $upstream`) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl-543- try ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl-555- try julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl:556: run(`git checkout -b $branch upstream/$branch`) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl-557- catch e ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl-564- @debug "checking out $branch failed with error: $e" julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl:565: run(`git checkout --orphan $branch`) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl-566- run(`git commit --allow-empty -m "Initial empty commit for docs"`) ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl-587- else julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl:588: throw(ArgumentError(string("link `$(kv)` cannot overwrite ", julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl:589: "`devurl = $(devurl)` with the same name."))) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl-590- end ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl-597- if forcepush julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl:598: run(`git commit --amend --date=now -m "build based on $sha"`) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl:599: run(`git push -fq upstream HEAD:$branch`) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl-600- else julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl:601: run(`git commit -m "build based on $sha"`) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl:602: run(`git push -q upstream HEAD:$branch`) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl-603- end ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl-674- if ispath(link) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl:675: @warn "removing `$(link)` and linking `$(link)` to `$(target)`." julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl-676- rm(link; force = true, recursive = true) ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl-715- # --ignore-unmatch so that we wouldn't get errors if dst does not exist julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl:716: run(`git rm -rf --ignore-unmatch $(dst)`) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Documenter.jl-717- # git rm also removed parent directories ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Expanders.jl-259- @warn(""" julia-1.5.3+dfsg/debian/embedded/Documenter/src/Expanders.jl:260: failed to evaluate `$(strip(str))` in `@meta` block in $(Utilities.locrepr(page.source, lines)) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Expanders.jl-261- ```$(x.language) ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Expanders.jl-279- admonition = Markdown.Admonition("warning", "Missing docstring.", julia-1.5.3+dfsg/debian/embedded/Documenter/src/Expanders.jl:280: Utilities.mdparse("Missing docstring for `$(strip(str))`. Check Documenter's build log for details.", mode=:blocks)) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Expanders.jl-281- binding = try ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Expanders.jl-384- @warn(""" julia-1.5.3+dfsg/debian/embedded/Documenter/src/Expanders.jl:385: failed to evaluate `$(strip(str))` in `@autodocs` block in $(Utilities.locrepr(page.source, lines)) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Expanders.jl-386- ```$(x.language) ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Expanders.jl-721- # eval(expr) is available in the REPL (i.e. Main) so we emulate that for the sandbox julia-1.5.3+dfsg/debian/embedded/Documenter/src/Expanders.jl:722: Core.eval(m, :(eval(x) = Core.eval($m, x))) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Expanders.jl-723- # modules created with Module() does not have include defined julia-1.5.3+dfsg/debian/embedded/Documenter/src/Expanders.jl:724: Core.eval(m, :(include(x) = Base.include($m, abspath(x)))) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Expanders.jl-725- return m ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Utilities/JSDependencies.jl-181- $("/"^80) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Utilities/JSDependencies.jl:182: require([$(deps)], function($(args)) { julia-1.5.3+dfsg/debian/embedded/Documenter/src/Utilities/JSDependencies.jl-183- $(s.js) ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Utilities/Utilities.jl-190- isexpr(x, :.) ? (x.args[1], x.args[2]) : julia-1.5.3+dfsg/debian/embedded/Documenter/src/Utilities/Utilities.jl:191: error("Invalid @var syntax `$x`.") julia-1.5.3+dfsg/debian/embedded/Documenter/src/Utilities/Utilities.jl-192-end julia-1.5.3+dfsg/debian/embedded/Documenter/src/Utilities/Utilities.jl-193-splitexpr(s::Symbol) = :(Main), quot(s) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Utilities/Utilities.jl:194:splitexpr(other) = error("Invalid @var syntax `$other`.") julia-1.5.3+dfsg/debian/embedded/Documenter/src/Utilities/Utilities.jl-195- ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl-80- end julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl:81: class in [:ico, :css, :js] || error("Unrecognised asset class $class for `$(uri)`") julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl-82- new(class, uri, islocal) ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl-230-[`Window.MathJax`](https://docs.mathjax.org/en/latest/options/) function. By default, julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl:231:Documenter specifies in the key `tex` that `\$...\$` and `\\(...\\)` denote inline math, that AMS julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl-232-style tags should be used and the `base`, `ams` and `autoload` packages should be imported. ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl-1232- if i === nothing julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl:1233: @warn "no match for `versions` entry `$(repr(entry))`" julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl-1234- else ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl-1238- else julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl:1239: @warn "no match for `versions` entry `$(repr(entry))`" julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl-1240- end ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl-1253- if i !== nothing julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl:1254: throw(ArgumentError("link `$(link)` incompatible with link `$(symlinks[i])`.")) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl-1255- end ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl-1601- julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl:1602:mdconvert(h::Markdown.Header{N}, parent; kwargs...) where {N} = DOM.Tag(Symbol("h$N"))(mdconvert(h.text, h; kwargs...)) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl-1603- ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl-1687- # If the admonition category is not one of the standard ones, we tag the julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl:1688: # admonition div element with a `is-category-$(category)` class. However, we julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/HTMLWriter.jl-1689- # first carefully sanitize the category name. Strictly speaking, this is not ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/LaTeXWriter.jl-169- try julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/LaTeXWriter.jl:170: piperun(`latexmk -f -interaction=nonstopmode -view=none -lualatex -shell-escape $texfile`) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/LaTeXWriter.jl-171- return true ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/LaTeXWriter.jl-187- try julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/LaTeXWriter.jl:188: piperun(`docker run -itd -u zeptodoctor --name latex-container -v $(pwd()):/mnt/ --rm juliadocs/documenter-latex:$(DOCKER_IMAGE_TAG)`) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/LaTeXWriter.jl:189: piperun(`docker exec -u zeptodoctor latex-container bash -c $(script)`) julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/LaTeXWriter.jl-190- piperun(`docker cp latex-container:/home/zeptodoctor/build/. .`) ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/MarkdownWriter.jl-83- anchor = "<a id='$(node.anchor.id)' href='#$(node.anchor.id)'>#</a>" julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/MarkdownWriter.jl:84: header = "**`$(node.object.binding)`** — *$(Utilities.doccat(node.object))*." julia-1.5.3+dfsg/debian/embedded/Documenter/src/Writers/MarkdownWriter.jl-85- println(io, anchor, "\n", header, "\n\n") ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/test/formats/latex.jl-3- cd(joinpath(@__DIR__, "..", "..")) do julia-1.5.3+dfsg/debian/embedded/Documenter/test/formats/latex.jl:4: cmd = `$(Base.julia_cmd()) --project=docs/pdf/` julia-1.5.3+dfsg/debian/embedded/Documenter/test/formats/latex.jl:5: @test success(`$(cmd) -e 'using Pkg; Pkg.instantiate()'`) julia-1.5.3+dfsg/debian/embedded/Documenter/test/formats/latex.jl:6: @test success(`$(cmd) docs/pdf/make.jl --verbose`) julia-1.5.3+dfsg/debian/embedded/Documenter/test/formats/latex.jl-7- # deploy only from Julia v1.0.X julia-1.5.3+dfsg/debian/embedded/Documenter/test/formats/latex.jl-8- if VERSION.major == 1 && VERSION.minor == 1 julia-1.5.3+dfsg/debian/embedded/Documenter/test/formats/latex.jl:9: @test success(`$(cmd) docs/pdf/deploy.jl`) julia-1.5.3+dfsg/debian/embedded/Documenter/test/formats/latex.jl-10- end ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/test/utilities.jl-174- cd("$(path_repo)") do julia-1.5.3+dfsg/debian/embedded/Documenter/test/utilities.jl:175: @test success(`git worktree add $(path_worktree)`) julia-1.5.3+dfsg/debian/embedded/Documenter/test/utilities.jl-176- end ############################################## julia-1.5.3+dfsg/debian/embedded/Documenter/test/utilities.jl-203- # file. julia-1.5.3+dfsg/debian/embedded/Documenter/test/utilities.jl:204: @test success(`git submodule add $(path_repo) repository`) julia-1.5.3+dfsg/debian/embedded/Documenter/test/utilities.jl-205- @test success(`git add -A`) ############################################## julia-1.5.3+dfsg/debian/embedded/JSON/test/runtests.jl-83- @testset "for issue #$i" for i in [21, 26, 57, 109, 152, 163] julia-1.5.3+dfsg/debian/embedded/JSON/test/runtests.jl:84: include("regression/issue$(lpad(string(i), 3, "0")).jl") julia-1.5.3+dfsg/debian/embedded/JSON/test/runtests.jl-85- end ############################################## julia-1.5.3+dfsg/debian/patches/doc-silent.patch-8- try julia-1.5.3+dfsg/debian/patches/doc-silent.patch:9:- run(`latexmk -f -interaction=nonstopmode -view=none -lualatex -shell-escape $file`) julia-1.5.3+dfsg/debian/patches/doc-silent.patch:10:+ run(`latexmk -silent -f -interaction=nonstopmode -view=none -lualatex -shell-escape $file`) julia-1.5.3+dfsg/debian/patches/doc-silent.patch-11- catch err ############################################## julia-1.5.3+dfsg/debian/patches/doc-silent.patch-22- try julia-1.5.3+dfsg/debian/patches/doc-silent.patch:23:- piperun(`latexmk -f -interaction=nonstopmode -view=none -lualatex -shell-escape $texfile`) julia-1.5.3+dfsg/debian/patches/doc-silent.patch:24:+ piperun(`latexmk -silent -f -interaction=nonstopmode -view=none -lualatex -shell-escape $texfile`) julia-1.5.3+dfsg/debian/patches/doc-silent.patch-25- return true ############################################## julia-1.5.3+dfsg/debian/patches/no-debug-version.patch-10-@@ -4,7 +4,7 @@ julia-1.5.3+dfsg/debian/patches/no-debug-version.patch:11: VERSDIR := v`cut -d. -f1-2 < $(JULIAHOME)/VERSION` julia-1.5.3+dfsg/debian/patches/no-debug-version.patch-12- ############################################## julia-1.5.3+dfsg/debian/shlibdeps.c-32- } julia-1.5.3+dfsg/debian/shlibdeps.c:33: if (dladdr(sym, &info) == 0) { julia-1.5.3+dfsg/debian/shlibdeps.c-34- fprintf(stderr, "%s\n", dlerror()); ############################################## julia-1.5.3+dfsg/.pc/upstream-971e7694-fix-arm-llvm.patch/src/debuginfo.cpp-858- JL_LOCK_NOGC(&jl_in_stackwalk); julia-1.5.3+dfsg/.pc/upstream-971e7694-fix-arm-llvm.patch/src/debuginfo.cpp:859: if (SymFromAddr(GetCurrentProcess(), dwAddress, &dwDisplacement64, pSymbol)) { julia-1.5.3+dfsg/.pc/upstream-971e7694-fix-arm-llvm.patch/src/debuginfo.cpp-860- // errors are ignored ############################################## julia-1.5.3+dfsg/.pc/upstream-971e7694-fix-arm-llvm.patch/src/debuginfo.cpp-1134-#else julia-1.5.3+dfsg/.pc/upstream-971e7694-fix-arm-llvm.patch/src/debuginfo.cpp:1135: dladdr_success = dladdr((void*)pointer, &dlinfo) != 0; julia-1.5.3+dfsg/.pc/upstream-971e7694-fix-arm-llvm.patch/src/debuginfo.cpp-1136-#endif ############################################## julia-1.5.3+dfsg/.pc/support-noopt.patch/Make.inc-105-ifneq ($(and $(filter $(PYTHON_SYSTEM),Windows),$(findstring CYGWIN,$(shell uname))),) julia-1.5.3+dfsg/.pc/support-noopt.patch/Make.inc:106:python_cygpath = `cygpath -w $(1)` julia-1.5.3+dfsg/.pc/support-noopt.patch/Make.inc-107-else ############################################## julia-1.5.3+dfsg/.pc/support-noopt.patch/Make.inc-308-# julia-1.5.3+dfsg/.pc/support-noopt.patch/Make.inc:309:# The first time you use `$(CACHED_RESULT)`, it will invoke `$(EXPENSIVE_OPERATION)`, julia-1.5.3+dfsg/.pc/support-noopt.patch/Make.inc:310:# but after that point, it will not, unless `$(EXPENSIVE_OPERATION)` evaluated to the julia-1.5.3+dfsg/.pc/support-noopt.patch/Make.inc-311-# empty string, in which case it will be re-evaluated. ############################################## julia-1.5.3+dfsg/.pc/support-noopt.patch/Make.inc-1411-spawn = $(1) julia-1.5.3+dfsg/.pc/support-noopt.patch/Make.inc:1412:cygpath_w = `cygpath -w $(1)` julia-1.5.3+dfsg/.pc/support-noopt.patch/Make.inc-1413-else ############################################## julia-1.5.3+dfsg/.pc/support-noopt.patch/Make.inc-1415-spawn = wine $(1) julia-1.5.3+dfsg/.pc/support-noopt.patch/Make.inc:1416:cygpath_w = `winepath -w $(1)` julia-1.5.3+dfsg/.pc/support-noopt.patch/Make.inc-1417-else # not Windows ############################################## julia-1.5.3+dfsg/.pc/support-noopt.patch/deps/suitesparse.mk-63- $(MAKE) -C $(dir $<)$${PROJ} library $(SUITESPARSE_MFLAGS) || exit 1; \ julia-1.5.3+dfsg/.pc/support-noopt.patch/deps/suitesparse.mk:64: $(INSTALL_NAME_CMD)lib`echo $${PROJ} | tr A-Z a-z`.$(SHLIB_EXT) $(dir $<)lib/lib`echo $${PROJ} | tr A-Z a-z`.$(SHLIB_EXT) || exit 1; \ julia-1.5.3+dfsg/.pc/support-noopt.patch/deps/suitesparse.mk-65- done ############################################## julia-1.5.3+dfsg/.pc/support-noopt.patch/src/Makefile-54-SRCS += codegen llvm-ptls julia-1.5.3+dfsg/.pc/support-noopt.patch/src/Makefile:55:RUNTIME_SRCS += jitlayers aotcompile debuginfo disasm llvm-simdloop llvm-muladd \ julia-1.5.3+dfsg/.pc/support-noopt.patch/src/Makefile-56- llvm-final-gc-lowering llvm-pass-helpers llvm-late-gc-lowering \ ############################################## julia-1.5.3+dfsg/.pc/require-sse2-on-i386.patch/src/codegen.cpp-621- name); julia-1.5.3+dfsg/.pc/require-sse2-on-i386.patch/src/codegen.cpp:622: gv->setUnnamedAddr(GlobalValue::UnnamedAddr::Global); julia-1.5.3+dfsg/.pc/require-sse2-on-i386.patch/src/codegen.cpp-623- return gv; ############################################## julia-1.5.3+dfsg/.pc/no-debug-version.patch/Makefile-3- julia-1.5.3+dfsg/.pc/no-debug-version.patch/Makefile:4:VERSDIR := v`cut -d. -f1-2 < $(JULIAHOME)/VERSION` julia-1.5.3+dfsg/.pc/no-debug-version.patch/Makefile-5- ############################################## julia-1.5.3+dfsg/.pc/do-not-download-suitesparse.patch/deps/suitesparse.mk-63- $(MAKE) -C $(dir $<)$${PROJ} library $(SUITESPARSE_MFLAGS) || exit 1; \ julia-1.5.3+dfsg/.pc/do-not-download-suitesparse.patch/deps/suitesparse.mk:64: $(INSTALL_NAME_CMD)lib`echo $${PROJ} | tr A-Z a-z`.$(SHLIB_EXT) $(dir $<)lib/lib`echo $${PROJ} | tr A-Z a-z`.$(SHLIB_EXT) || exit 1; \ julia-1.5.3+dfsg/.pc/do-not-download-suitesparse.patch/deps/suitesparse.mk-65- done ############################################## julia-1.5.3+dfsg/.pc/doc-make.patch/doc/make.jl-174- @eval using $(stdlib.stdlib) julia-1.5.3+dfsg/.pc/doc-make.patch/doc/make.jl:175: # All standard library modules get `using $STDLIB` as their global julia-1.5.3+dfsg/.pc/doc-make.patch/doc/make.jl-176- DocMeta.setdocmeta!(Base.root_module(Base, stdlib.stdlib), :DocTestSetup, :(using $(stdlib.stdlib)), recursive=true) ############################################## julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-84-@testset "InetAddr constructor" begin julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:85: inet = Sockets.InetAddr(IPv4(127,0,0,1), 1024) julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-86- @test inet.host == ip"127.0.0.1" ############################################## julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-89- @test sprint(show, inet) == str julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:90: inet = Sockets.InetAddr("127.0.0.1", 1024) julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-91- @test inet.host == ip"127.0.0.1" ############################################## julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-94-@testset "InetAddr invalid port" begin julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:95: @test_throws InexactError Sockets.InetAddr(IPv4(127,0,0,1), -1) julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:96: @test_throws InexactError Sockets.InetAddr(IPv4(127,0,0,1), typemax(UInt16)+1) julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-97-end ############################################## julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-149- let p = fetch(port) julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:150: otherip = getipaddr() julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-151- if otherip != Sockets.localhost ############################################## julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-352- (IPv6("::1"), UInt16(11012)), julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:353: (getipaddr(), UInt16(11013)) ] julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-354- port, listen_sock = listenany(addr, porthint) ############################################## julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-504- # test the method matching connect!(::TCPSocket, ::Sockets.InetAddr{T<:Base.IPAddr}) julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:505: let addr = Sockets.InetAddr(ip"127.0.0.1", 4444) julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-506- srv = listen(addr) ############################################## julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-512- julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:513: let addr = Sockets.InetAddr(ip"127.0.0.1", 4444) julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-514- srv = listen(addr) ############################################## julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-519- julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:520: let addr = Sockets.InetAddr(ip"127.0.0.1", 4444) julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-521- srv = listen(addr) ############################################## julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-530-@testset "iswritable" begin julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:531: let addr = Sockets.InetAddr(ip"127.0.0.1", 4445) julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-532- srv = listen(addr) ############################################## julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-548-@testset "getipaddrs" begin julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:549: @test getipaddr() in getipaddrs() julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-550- try julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:551: getipaddr(IPv6) in getipaddrs(IPv6) julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-552- catch julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-553- if !isempty(getipaddrs(IPv6)) julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:554: @test "getipaddr(IPv6) errored when it shouldn't have!" julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-555- end ############################################## julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-564-@testset "address scope" begin julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:565: @test islinklocaladdr(ip"169.254.1.0") julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:566: @test islinklocaladdr(ip"169.254.254.255") julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:567: @test islinklocaladdr(ip"fe80::") julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:568: @test islinklocaladdr(ip"febf::") julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:569: @test !islinklocaladdr(ip"127.0.0.1") julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:570: @test !islinklocaladdr(ip"2001::") julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-571- ############################################## julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-576- @testset "TCPSocket stdin" begin julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:577: let addr = Sockets.InetAddr(ip"127.0.0.1", 4455) julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-578- srv = listen(addr) ############################################## julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-580- julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl:581: @test success(pipeline(`$(Base.julia_cmd()) --startup-file=no -e "exit()" -i`, stdin=s)) julia-1.5.3+dfsg/.pc/test-skip-dns-ubuntu.patch/stdlib/Sockets/test/runtests.jl-582- ############################################## julia-1.5.3+dfsg/.pc/mask-tests-1.2.0.patch/test/file.jl-74- julia-1.5.3+dfsg/.pc/mask-tests-1.2.0.patch/test/file.jl:75:child_eval(code::String) = eval(Meta.parse(readchomp(`$(Base.julia_cmd()) -E $code`))) julia-1.5.3+dfsg/.pc/mask-tests-1.2.0.patch/test/file.jl-76- ############################################## julia-1.5.3+dfsg/.pc/mask-tests-1.2.0.patch/test/read.jl-112- write(filename, text) julia-1.5.3+dfsg/.pc/mask-tests-1.2.0.patch/test/read.jl:113: open(`$(Sys.iswindows() ? "type" : "cat") $filename`)[1] julia-1.5.3+dfsg/.pc/mask-tests-1.2.0.patch/test/read.jl:114:# Was open(`echo -n $text`)[1] julia-1.5.3+dfsg/.pc/mask-tests-1.2.0.patch/test/read.jl-115-# See https://github.com/JuliaLang/julia/issues/14747 ############################################## julia-1.5.3+dfsg/.pc/arm64-openblas.patch/Make.inc-105-ifneq ($(and $(filter $(PYTHON_SYSTEM),Windows),$(findstring CYGWIN,$(shell uname))),) julia-1.5.3+dfsg/.pc/arm64-openblas.patch/Make.inc:106:python_cygpath = `cygpath -w $(1)` julia-1.5.3+dfsg/.pc/arm64-openblas.patch/Make.inc-107-else ############################################## julia-1.5.3+dfsg/.pc/arm64-openblas.patch/Make.inc-308-# julia-1.5.3+dfsg/.pc/arm64-openblas.patch/Make.inc:309:# The first time you use `$(CACHED_RESULT)`, it will invoke `$(EXPENSIVE_OPERATION)`, julia-1.5.3+dfsg/.pc/arm64-openblas.patch/Make.inc:310:# but after that point, it will not, unless `$(EXPENSIVE_OPERATION)` evaluated to the julia-1.5.3+dfsg/.pc/arm64-openblas.patch/Make.inc-311-# empty string, in which case it will be re-evaluated. ############################################## julia-1.5.3+dfsg/.pc/arm64-openblas.patch/Make.inc-1411-spawn = $(1) julia-1.5.3+dfsg/.pc/arm64-openblas.patch/Make.inc:1412:cygpath_w = `cygpath -w $(1)` julia-1.5.3+dfsg/.pc/arm64-openblas.patch/Make.inc-1413-else ############################################## julia-1.5.3+dfsg/.pc/arm64-openblas.patch/Make.inc-1415-spawn = wine $(1) julia-1.5.3+dfsg/.pc/arm64-openblas.patch/Make.inc:1416:cygpath_w = `winepath -w $(1)` julia-1.5.3+dfsg/.pc/arm64-openblas.patch/Make.inc-1417-else # not Windows ############################################## julia-1.5.3+dfsg/Makefile-3- julia-1.5.3+dfsg/Makefile:4:VERSDIR := v`cut -d. -f1-2 < $(JULIAHOME)/VERSION` julia-1.5.3+dfsg/Makefile-5- ############################################## julia-1.5.3+dfsg/Make.inc-105-ifneq ($(and $(filter $(PYTHON_SYSTEM),Windows),$(findstring CYGWIN,$(shell uname))),) julia-1.5.3+dfsg/Make.inc:106:python_cygpath = `cygpath -w $(1)` julia-1.5.3+dfsg/Make.inc-107-else ############################################## julia-1.5.3+dfsg/Make.inc-308-# julia-1.5.3+dfsg/Make.inc:309:# The first time you use `$(CACHED_RESULT)`, it will invoke `$(EXPENSIVE_OPERATION)`, julia-1.5.3+dfsg/Make.inc:310:# but after that point, it will not, unless `$(EXPENSIVE_OPERATION)` evaluated to the julia-1.5.3+dfsg/Make.inc-311-# empty string, in which case it will be re-evaluated. ############################################## julia-1.5.3+dfsg/Make.inc-1412-spawn = $(1) julia-1.5.3+dfsg/Make.inc:1413:cygpath_w = `cygpath -w $(1)` julia-1.5.3+dfsg/Make.inc-1414-else ############################################## julia-1.5.3+dfsg/Make.inc-1416-spawn = wine $(1) julia-1.5.3+dfsg/Make.inc:1417:cygpath_w = `winepath -w $(1)` julia-1.5.3+dfsg/Make.inc-1418-else # not Windows