Skip to content

Commit

Permalink
test: using Test first
Browse files Browse the repository at this point in the history
  • Loading branch information
inkydragon committed May 5, 2024
1 parent 78c865b commit 57a0cf8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/cholmod.jl
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# This file is a part of Julia. License is MIT: https://julialang.org/license

module CHOLMODTests
using Test

@static if !Base.USE_GPL_LIBS
@info "Not use GPL libs, Skipping CHOLMOD Tests"
else

using Test
using SparseArrays.CHOLMOD
using SparseArrays.CHOLMOD: getcommon
using Random
Expand Down
2 changes: 1 addition & 1 deletion test/linalg_solvers.jl
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# This file is a part of Julia. License is MIT: https://julialang.org/license

module SparseLinalgSolversTests
using Test

@static if !Base.USE_GPL_LIBS
@info "Not use GPL libs, Skipping SparseLinalgSolvers Tests"
else

using Test
using SparseArrays
using Random
using LinearAlgebra
Expand Down
2 changes: 1 addition & 1 deletion test/spqr.jl
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# This file is a part of Julia. License is MIT: https://julialang.org/license

module SPQRTests
using Test

@static if !Base.USE_GPL_LIBS
@info "Not use GPL libs, Skipping SPQR Tests"
else

using Test
using SparseArrays.SPQR
using SparseArrays.CHOLMOD
using LinearAlgebra: I, istriu, norm, qr, rank, rmul!, lmul!, Adjoint, Transpose, ColumnNorm, RowMaximum, NoPivot
Expand Down
2 changes: 1 addition & 1 deletion test/umfpack.jl
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# This file is a part of Julia. License is MIT: https://julialang.org/license

module UMFPACKTests
using Test

@static if !Base.USE_GPL_LIBS
@info "Not use GPL libs, Skipping UMFPACK Tests"
else

using Test
using Random
using SparseArrays
using Serialization
Expand Down

0 comments on commit 57a0cf8

Please sign in to comment.