Skip to content
This repository was archived by the owner on Jul 19, 2023. It is now read-only.

Commit 7ef895e

Browse files
Merge pull request #200 from JuliaDiffEq/test
Print statements to fix tests
2 parents fc59f0b + 73fde36 commit 7ef895e

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
environment:
22
matrix:
3-
- julia_version: 1
3+
- julia_version: 1.2
44

55
platform:
66
- x64 # 64-bit

test/2D_3D_fast_multiplication.jl

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
using LinearAlgebra, DiffEqOperators, Random, Test, BandedMatrices, SparseArrays
22

3+
@show "2D"
4+
35
@testset "2D Multiplication with no boundary points and dx = 1.0" begin
46

57
# Test (Lxx + Lyy)*M, dx = 1.0, no coefficient
@@ -450,6 +452,8 @@ end
450452
@test M_temp ((Lx2*M)[1:N,2:N+1]+(Ly2*M)[2:N+1,1:N]+(Lx3*M)[1:N,2:N+1] +(Ly3*M)[2:N+1,1:N] + (Lx4*M)[1:N,2:N+1] +(Ly4*M)[2:N+1,1:N])
451453
end
452454

455+
@show "irregular"
456+
453457
@testset "x and y are both irregular grids" begin
454458

455459
N = 100
@@ -631,6 +635,8 @@ end
631635
# 3D Multiplication Tests
632636
################################################################################
633637

638+
@show "3D"
639+
634640
@testset "3D Multiplication with no boundary points and dx = dy = dz = 1.0" begin
635641

636642
# Test (Lxx + Lyy + Lzz)*M, dx = dy = dz = 1.0, no coefficient
@@ -844,6 +850,8 @@ end
844850

845851
end
846852

853+
@show "3D BPC"
854+
847855
@testset "3D Multiplication with differing bpc and dx = dy = dz = 1.0" begin
848856

849857
N = 100
@@ -1177,6 +1185,8 @@ end
11771185

11781186
end
11791187

1188+
@show "3D with coefficients"
1189+
11801190
# This is the same test set as the above test set with the addition of coefficients
11811191
@testset "3D Multiplication with coefficients" begin
11821192

@@ -1279,6 +1289,8 @@ end
12791289

12801290
end
12811291

1292+
@show "3D irregular"
1293+
12821294
@testset "x, y, and z are all irregular grids" begin
12831295

12841296
N = 100

0 commit comments

Comments
 (0)