-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
allow stdlibs to run their tests in parallel (#25778)
* allow stdlibs to run their tests in parallel this is done by creating a file `tests` in the `test` folder that lists the different files with tests (excluding ".jl"). If this file does not exist, we fall back to using the runtests.jl file * fix runtest files for stdlibs
- Loading branch information
1 parent
fd4aff7
commit 8d8f960
Showing
11 changed files
with
106 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,8 @@ | ||
# This file is a part of Julia. License is MIT: https://julialang.org/license | ||
module DateTests | ||
|
||
using Test | ||
using Dates | ||
|
||
include("accessors.jl") | ||
include("adjusters.jl") | ||
include("query.jl") | ||
include("periods.jl") | ||
include("ranges.jl") | ||
include("rounding.jl") | ||
include("types.jl") | ||
include("io.jl") | ||
include("arithmetic.jl") | ||
include("conversions.jl") | ||
for file in readlines(joinpath(@__DIR__, "testgroups")) | ||
include(file * ".jl") | ||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
accessors | ||
adjusters | ||
query | ||
periods | ||
ranges | ||
rounding | ||
types | ||
io | ||
arithmetic | ||
conversions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,5 @@ | ||
# This file is a part of Julia. License is MIT: https://julialang.org/license | ||
|
||
include("triangular.jl") | ||
include("qr.jl") | ||
include("dense.jl") | ||
include("matmul.jl") | ||
include("schur.jl") | ||
include("special.jl") | ||
include("eigen.jl") | ||
include("bunchkaufman.jl") | ||
include("svd.jl") | ||
include("lapack.jl") | ||
include("tridiag.jl") | ||
include("bidiag.jl") | ||
include("diagonal.jl") | ||
include("cholesky.jl") | ||
include("lu.jl") | ||
include("symmetric.jl") | ||
include("generic.jl") | ||
include("uniformscaling.jl") | ||
include("lq.jl") | ||
include("hessenberg.jl") | ||
include("blas.jl") | ||
include("adjtrans.jl") | ||
for file in readlines(joinpath(@__DIR__, "testgroups")) | ||
include(file * ".jl") | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
triangular | ||
qr | ||
dense | ||
matmul | ||
schur | ||
special | ||
eigen | ||
bunchkaufman | ||
svd | ||
lapack | ||
tridiag | ||
bidiag | ||
diagonal | ||
cholesky | ||
lu | ||
symmetric | ||
generic | ||
uniformscaling | ||
lq | ||
hessenberg | ||
blas | ||
adjtrans |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
# This file is a part of Julia. License is MIT: https://julialang.org/license | ||
|
||
using Test, SparseArrays | ||
using LinearAlgebra | ||
|
||
include("higherorderfns.jl") | ||
include("sparse.jl") | ||
include("sparsevector.jl") | ||
for file in readlines(joinpath(@__DIR__, "testgroups")) | ||
include(file * ".jl") | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
higherorderfns | ||
sparse | ||
sparsevector |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters