From 8be10bf3662309f6704f9823fc243e7e65e8ac33 Mon Sep 17 00:00:00 2001 From: MikaelSlevinsky Date: Tue, 23 Aug 2022 13:54:50 -0500 Subject: [PATCH] remove old tests --- test/fftBigFloattests.jl | 9 --------- test/runtests.jl | 1 - 2 files changed, 10 deletions(-) delete mode 100644 test/fftBigFloattests.jl diff --git a/test/fftBigFloattests.jl b/test/fftBigFloattests.jl deleted file mode 100644 index 04040571..00000000 --- a/test/fftBigFloattests.jl +++ /dev/null @@ -1,9 +0,0 @@ -using DSP, FastTransforms, Test - -@testset "BigFloat Convolution" begin - s = big(1) ./ (1:10) - s64 = Float64.(s) - @test Float64.(conv(s, s)) ≈ conv(s64, s64) - @test s == big(1) ./ (1:10) #67, ensure conv doesn't overwrite input - @test all(s64 .=== Float64.(big(1) ./ (1:10))) -end diff --git a/test/runtests.jl b/test/runtests.jl index 33c88fd1..8a3790a7 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -5,7 +5,6 @@ include("chebyshevtests.jl") include("quadraturetests.jl") include("libfasttransformstests.jl") include("nuffttests.jl") -include("fftBigFloattests.jl") include("paduatests.jl") include("gaunttests.jl") include("hermitetests.jl")