forked from JuliaLang/julia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruntests.jl
24 lines (17 loc) · 942 Bytes
/
runtests.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
testnames = ["core", "keywordargs", "numbers", "strings", "unicode",
"collections", "hashing", "remote", "iobuffer", "arrayops",
"linalg", "blas", "fft", "dsp", "sparse", "bitarray",
"random", "math", "functional", "bigint", "sorting",
"statistics", "spawn", "parallel", "priorityqueue",
"arpack", "file", "suitesparse", "version",
"resolve", "pollfd", "mpfr", "broadcast", "complex",
"socket", "floatapprox", "readdlm", "regex", "float16",
"combinatorics", "sysinfo", "rounding"]
tests = ARGS==["all"] ? testnames : ARGS
n = min(8, CPU_CORES, length(tests))
@unix_only n > 1 && addprocs(n)
blas_set_num_threads(1)
@everywhere include("testdefs.jl")
reduce(propagate_errors, nothing, pmap(runtests, tests; err_retry=false, err_stop=true))
@unix_only n > 1 && rmprocs(workers(), waitfor=5.0)
println(" \033[32;1mSUCCESS\033[0m")