Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/abstractq.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestAbstractQ

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test
using LinearAlgebra
Expand Down
2 changes: 1 addition & 1 deletion test/addmul.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestAddmul

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Base: rtoldefault
using Test
Expand Down
2 changes: 1 addition & 1 deletion test/adjtrans.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestAdjointTranspose

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra

Expand Down
2 changes: 1 addition & 1 deletion test/bidiag.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestBidiagonal

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random
using LinearAlgebra: BlasReal, BlasFloat
Expand Down
8 changes: 7 additions & 1 deletion test/bitarray.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
# This file is a part of Julia. License is MIT: https://julialang.org/license

module TestBitArray

isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using LinearAlgebra, Test, Random

Expand Down Expand Up @@ -95,3 +99,5 @@ b2 = bitrand(v1)

b1 = bitrand(n1, n1)
@check_bit_operation diag(b1)

end
2 changes: 1 addition & 1 deletion test/blas.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestBLAS

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random
using LinearAlgebra: BlasReal, BlasComplex
Expand Down
2 changes: 1 addition & 1 deletion test/bunchkaufman.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestBunchKaufman

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random
using LinearAlgebra: BlasComplex, BlasFloat, BlasReal, QRPivoted
Expand Down
2 changes: 1 addition & 1 deletion test/cholesky.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestCholesky

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random
using LinearAlgebra: BlasComplex, BlasFloat, BlasReal, QRPivoted,
Expand Down
2 changes: 1 addition & 1 deletion test/dense.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestDense

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random
using LinearAlgebra: BlasComplex, BlasFloat, BlasReal
Expand Down
2 changes: 1 addition & 1 deletion test/diagonal.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestDiagonal

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random
using LinearAlgebra: BlasFloat, BlasComplex
Expand Down
2 changes: 1 addition & 1 deletion test/eigen.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestEigen

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random
using LinearAlgebra: BlasComplex, BlasFloat, BlasReal, QRPivoted, UtiAUi!
Expand Down
2 changes: 1 addition & 1 deletion test/factorization.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestFactorization

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra

Expand Down
2 changes: 1 addition & 1 deletion test/generic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestGeneric

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random
using Test: GenericArray
Expand Down
2 changes: 1 addition & 1 deletion test/givens.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestGivens

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random
using LinearAlgebra: Givens, Rotation, givensAlgorithm
Expand Down
2 changes: 1 addition & 1 deletion test/hessenberg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestHessenberg

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random

Expand Down
2 changes: 1 addition & 1 deletion test/lapack.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestLAPACK

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random
using LinearAlgebra: BlasInt
Expand Down
2 changes: 1 addition & 1 deletion test/ldlt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestLDLT

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random

Expand Down
2 changes: 1 addition & 1 deletion test/lq.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestLQ

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random
using LinearAlgebra: BlasComplex, BlasFloat, BlasReal, rmul!, lmul!
Expand Down
2 changes: 1 addition & 1 deletion test/lu.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestLU

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random
using LinearAlgebra: ldiv!, BlasReal, BlasInt, BlasFloat, rdiv!
Expand Down
2 changes: 1 addition & 1 deletion test/matmul.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestMatmul

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Base: rtoldefault
using Test, LinearAlgebra, Random
Expand Down
2 changes: 1 addition & 1 deletion test/pinv.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestPinv

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random

Expand Down
2 changes: 1 addition & 1 deletion test/qr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestQR

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random
using LinearAlgebra: BlasComplex, BlasFloat, BlasReal, QRPivoted, rmul!, lmul!
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is a part of Julia. License is MIT: https://julialang.org/license

include("prune_old_LA.jl")
include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra

Expand Down
2 changes: 1 addition & 1 deletion test/schur.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestSchur

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random
using LinearAlgebra: BlasComplex, BlasFloat, BlasReal, QRPivoted
Expand Down
2 changes: 1 addition & 1 deletion test/special.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestSpecial

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random
using LinearAlgebra: rmul!, BandIndex
Expand Down
2 changes: 1 addition & 1 deletion test/structuredbroadcast.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestStructuredBroadcast

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra

Expand Down
2 changes: 1 addition & 1 deletion test/svd.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestSVD

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random
using LinearAlgebra: BlasComplex, BlasFloat, BlasReal, QRPivoted
Expand Down
2 changes: 1 addition & 1 deletion test/symmetric.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestSymmetric

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random

Expand Down
2 changes: 1 addition & 1 deletion test/symmetriceigen.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestSymmetricEigen

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra
using LinearAlgebra: DivideAndConquer, QRIteration, RobustRepresentations
Expand Down
2 changes: 1 addition & 1 deletion test/triangular.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestTriangular

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random
using LinearAlgebra: errorbounds, transpose!, BandIndex
Expand Down
2 changes: 1 addition & 1 deletion test/triangular2.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestTriangularReal

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Random

Expand Down
2 changes: 1 addition & 1 deletion test/triangular3.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestTriangularComplex

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Random

Expand Down
2 changes: 1 addition & 1 deletion test/tridiag.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestTridiagonal

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random

Expand Down
2 changes: 1 addition & 1 deletion test/uniformscaling.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module TestUniformscaling

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random

Expand Down
2 changes: 1 addition & 1 deletion test/unitful.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module TestUnitfulLinAlg

isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
isdefined(Main, :pruned_old_LA) || @eval Main include(joinpath(@__DIR__, "prune_old_LA.jl"))

using Test, LinearAlgebra, Random

Expand Down