Skip to content

Commit 3a7d2bb

Browse files
committed
Add power of three test, mute 2d test
1 parent f844907 commit 3a7d2bb

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

test/onedim/complex_backward.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using FFTA, Test
2-
test_nums = [8, 11, 15, 16, 100]
2+
test_nums = [8, 11, 15, 16, 27, 100]
33
@testset "backward" begin
44
for N in test_nums
55
x = ones(ComplexF64, N)

test/onedim/complex_forward.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using FFTA, Test
2-
test_nums = [8, 11, 15, 16, 100]
2+
test_nums = [8, 11, 15, 16, 27, 100]
33
@testset verbose = true " forward" begin
44
for N in test_nums
55
x = ones(ComplexF64, N)

test/onedim/real_backward.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using FFTA, Test
2-
test_nums = [8, 11, 15, 16, 100]
2+
test_nums = [8, 11, 15, 16, 27, 100]
33
@testset "backward" begin
44
for N in test_nums
55
x = ones(Float64, N)

test/onedim/real_forward.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using FFTA, Test
2-
test_nums = [8, 11, 15, 16, 100]
2+
test_nums = [8, 11, 15, 16, 27, 100]
33
@testset verbose = true " forward" begin
44
for N in test_nums
55
x = ones(Float64, N)

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Random.seed!(1)
2828
@test x x2 atol=1e-12
2929
end
3030
end
31-
@testset verbose = true "2D" begin
31+
@testset verbose = false "2D" begin
3232
@testset verbose = true "Complex" begin
3333
include("twodim/complex_forward.jl")
3434
include("twodim/complex_backward.jl")

test/twodim/complex_backward.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using FFTA, Test
2-
test_nums = [8, 11, 15, 16, 100]
2+
test_nums = [8, 11, 15, 16, 27, 100]
33
@testset "backward" begin
44
for N in test_nums
55
x = ones(ComplexF64, N, N)

test/twodim/complex_forward.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using FFTA, Test
2-
test_nums = [8, 11, 15, 16, 100]
2+
test_nums = [8, 11, 15, 16, 27, 100]
33
@testset " forward" begin
44
for N in test_nums
55
x = ones(ComplexF64, N, N)

test/twodim/real_backward.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using FFTA, Test
2-
test_nums = [8, 11, 15, 16, 100]
2+
test_nums = [8, 11, 15, 16, 27, 100]
33
@testset "backward" begin
44
for N in test_nums
55
x = ones(Float64, N, N)

test/twodim/real_forward.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using FFTA, Test
2-
test_nums = [8, 11, 15, 16, 100]
2+
test_nums = [8, 11, 15, 16, 27, 100]
33
@testset " forward" begin
44
for N in test_nums
55
x = ones(Float64, N, N)

0 commit comments

Comments
 (0)