aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorhinder <hinder@4f5cb9a8-4dd8-4c2d-9bbd-173fa4467843>2013-10-09 17:56:16 +0000
committerhinder <hinder@4f5cb9a8-4dd8-4c2d-9bbd-173fa4467843>2013-10-09 17:56:16 +0000
commiteb10d9d14796215db7670011d576523a7c17d182 (patch)
tree8fdfbbab5499543ef394319dc9d6e38453e74e9e /schedule.ccl
parentb057717283eddba5098ef07264602e367a2e665d (diff)
Rename integration convergence test function and run tests only if Multipole::enable_test = yes
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/Multipole/trunk@96 4f5cb9a8-4dd8-4c2d-9bbd-173fa4467843
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl14
1 files changed, 8 insertions, 6 deletions
diff --git a/schedule.ccl b/schedule.ccl
index d460e0f..328e1de 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -1,10 +1,9 @@
#schedule.ccl for thorn Multipole
-STORAGE: test_integration_convergence_orders
-
if (enable_test)
{
STORAGE: harmonics[1]
+ STORAGE: test_integration_convergence_orders
}
schedule Multipole_Calc at CCTK_ANALYSIS after (calc_np,PsiKadelia,Accelerator_CopyBack)
@@ -27,9 +26,12 @@ schedule Multipole_ParamCheck at CCTK_PARAMCHECK
OPTIONS: GLOBAL
} "Check Multipole parameters"
-# # Tests
+# Tests
-schedule Multipole_TestSimpson at CCTK_PARAMCHECK
+if (enable_test)
{
- LANG: C
-} "Test simpson integration method"
+ schedule Multipole_TestIntegrationConvergence at CCTK_PARAMCHECK
+ {
+ LANG: C
+ } "Test convergence of integration"
+}