-
-
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
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
- Loading branch information
1 parent
eea727c
commit dd07d50
Showing
9 changed files
with
69 additions
and
32 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,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__, "tests") | ||
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__, "tests") | ||
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