Skip to content

Commit

Permalink
use test_broken not broken=true for LTS compat
Browse files Browse the repository at this point in the history
  • Loading branch information
krcools committed Sep 22, 2023
1 parent 6f65cc8 commit 3ffa287
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/test_hh3dints.jl
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ end

@test z_cv_double z_cv_ss rtol = 1e-4
@test z_cv_se z_cv_ss rtol=1e-4
@test norm(z_cv_ss-z_cv_se)/norm(z_cv_ss) < norm(z_cv_ss-z_cv_double)/norm(z_cv_ss) broken = true
@test_broken norm(z_cv_ss-z_cv_se)/norm(z_cv_ss) < norm(z_cv_ss-z_cv_double)/norm(z_cv_ss)
#doublelayer
z_cv_se = zeros(complex(T),1,1)
z_cv_ss = zeros(complex(T),1,1)
Expand Down Expand Up @@ -222,7 +222,7 @@ end

@test z_cv_double z_cv_ss rtol = 1e-4
@test z_cv_se z_cv_double rtol=1e-4
@test norm(z_cv_ss-z_cv_se) < norm(z_cv_ss-z_cv_double) broken = true
@test_broken norm(z_cv_ss-z_cv_se) < norm(z_cv_ss-z_cv_double)

#doublelayer
z_cv_se = zeros(complex(T),3,3)
Expand Down Expand Up @@ -261,7 +261,7 @@ end

@test z_cv_double z_cv_ss rtol = 1e-4
@test z_cv_se z_cv_ss rtol=1e-4
@test norm(z_cv_ss-z_cv_se) < norm(z_cv_ss-z_cv_double) broken = true
@test_broken norm(z_cv_ss-z_cv_se) < norm(z_cv_ss-z_cv_double)

#pyramid test patch basis
SE_strategy = BEAST.WiltonSERule(
Expand All @@ -287,7 +287,7 @@ end

@test z_cv_double z_cv_ss rtol = 1e-4
@test z_cv_se z_cv_ss rtol=1e-4
@test norm(z_cv_ss-z_cv_se) < norm(z_cv_ss-z_cv_double) broken = true
@test_broken norm(z_cv_ss-z_cv_se) < norm(z_cv_ss-z_cv_double)

#doublelayer
z_cv_se = zeros(complex(T),3,1)
Expand Down Expand Up @@ -339,7 +339,7 @@ end

@test z_cv_double z_cv_ss rtol = 1e-4
@test z_cv_se z_cv_ss rtol=1e-4
@test norm(z_cv_ss-z_cv_se) < norm(z_cv_ss-z_cv_double) broken = true
@test_broken norm(z_cv_ss-z_cv_se) < norm(z_cv_ss-z_cv_double)

#double layer
z_cv_se = zeros(complex(T),1,3)
Expand Down

0 comments on commit 3ffa287

Please sign in to comment.