From 46728b9799d137055db5cfcbd866b9be0bfa671d Mon Sep 17 00:00:00 2001 From: dehann Date: Thu, 10 Feb 2022 11:35:00 -0500 Subject: [PATCH 1/2] runtest sequence hides sporadic error #1482 --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 951395075..6a8d9486b 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,6 +1,7 @@ using Test # temporarily moved to start (for debugging) +include("testDefaultDeconv.jl") include("testSpecialEuclidean2Mani.jl") include("testFactorGradients.jl") @@ -42,7 +43,6 @@ include("testBasicCSM.jl") include("testCliqueFactors.jl") include("testCcolamdOrdering.jl") include("testBasicGraphs.jl") -include("testDefaultDeconv.jl") include("testJointEnforcement.jl") include("testHasPriors913.jl") include("testInitVariableOrder.jl") From 8fbddb2234cf59a62a7c1df86732b3228e33a136 Mon Sep 17 00:00:00 2001 From: dehann Date: Thu, 10 Feb 2022 11:43:29 -0500 Subject: [PATCH 2/2] add comment on error hide --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 6a8d9486b..c2fcc03c6 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,7 +1,7 @@ using Test # temporarily moved to start (for debugging) -include("testDefaultDeconv.jl") +include("testDefaultDeconv.jl") # see #1482, sequence might influence/hide a test error. include("testSpecialEuclidean2Mani.jl") include("testFactorGradients.jl")