Skip to content

Commit 3ecd7ff

Browse files
committed
Work in tests
1 parent 170fd64 commit 3ecd7ff

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ version = "0.1.0"
55

66
[deps]
77
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
8+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
89
MPI = "da04e1cc-30fd-572f-bb4f-1f8673147195"
910
PETSc_jll = "8fa3689e-f0b9-5420-9873-adf6ccf46f2d"
1011
PartitionedArrays = "5a9dfac6-5c52-46f7-8278-5e2210713be9"
@@ -13,13 +14,13 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1314
SparseMatricesCSR = "a0a7dd2c-ebf4-11e9-1f05-cf50bc540ca1"
1415

1516
[compat]
16-
julia = "1.6"
1717
MPI = "0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.20"
1818
PETSc_jll = "=3.13.4, =3.15.2"
1919
PartitionedArrays = "0.4"
2020
Preferences = "1.4"
2121
SparseArrays = "1.10"
2222
SparseMatricesCSR = "0.6"
23+
julia = "1.6"
2324

2425
[extras]
2526
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

test/runtests.jl

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1+
module PETSCTest
2+
13
using PETSC
24
using Test
35

4-
@testset "PETSC.jl" begin
5-
# Write your tests here.
6+
@testset "KSP" begin
7+
@testset "Sequential" begin include("ksp_test.jl") end
8+
@testset "PartitionedArrays: DebugArray" begin include("debug_array/ksp_test.jl") end
9+
@testset "PartitionedArrays: MPIArray" begin include("mpi_array/ksp_test.jl") end
10+
end
11+
612
end

0 commit comments

Comments
 (0)