summaryrefslogtreecommitdiffstats
path: root/CTestConfig.cmake
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2011-04-11 15:18:12 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2011-04-11 15:18:12 (GMT)
commitc8fa42ed482054a1db2111e73f7d2b0116f3ef5f (patch)
tree599ce3f72bdc3559213df98f9f3847342f5b9527 /CTestConfig.cmake
parentb4f14a012e44d7ee192709cda4c74059451c8e90 (diff)
downloadhdf5-c8fa42ed482054a1db2111e73f7d2b0116f3ef5f.zip
hdf5-c8fa42ed482054a1db2111e73f7d2b0116f3ef5f.tar.gz
hdf5-c8fa42ed482054a1db2111e73f7d2b0116f3ef5f.tar.bz2
[svn-r20465] Add CDASH_LOCAL option to direct where ctest results are reported
Diffstat (limited to 'CTestConfig.cmake')
-rw-r--r--CTestConfig.cmake16
1 files changed, 11 insertions, 5 deletions
diff --git a/CTestConfig.cmake b/CTestConfig.cmake
index e17a745..7d17f60 100644
--- a/CTestConfig.cmake
+++ b/CTestConfig.cmake
@@ -5,11 +5,17 @@
## ENABLE_TESTING()
## INCLUDE(CTest)
SET (CTEST_PROJECT_NAME "HDF5 Trunk")
-SET (CTEST_NIGHTLY_START_TIME "20:00:00 CST")
SET (CTEST_DROP_METHOD "http")
-SET (CTEST_DROP_SITE "nei.hdfgroup.uiuc.edu")
-SET (CTEST_DROP_LOCATION "/cdash/submit.php?project=HDF5+Trunk")
+IF (CDASH_LOCAL)
+ SET (CTEST_NIGHTLY_START_TIME "20:00:00 CST")
+ SET (CTEST_DROP_SITE "nei.hdfgroup.uiuc.edu")
+ SET (CTEST_DROP_LOCATION "/cdash/submit.php?project=HDF5+Trunk")
+ELSE (CDASH_LOCAL)
+ SET (CTEST_NIGHTLY_START_TIME "00:00:00 EST")
+ SET (CTEST_DROP_SITE "cdash.hdfgroup.uiuc.edu")
+ SET (CTEST_DROP_LOCATION "/submit.php?project=HDF5+Trunk")
+ENDIF (CDASH_LOCAL)
SET (CTEST_DROP_SITE_CDASH TRUE)
SET (UPDATE_TYPE svn)
@@ -20,5 +26,5 @@ SET (MEMORYCHECKCOMMAND "/usr/bin/valgrind")
SET (CTEST_MEMORYCHECK_COMMAND_OPTIONS "-v --tool=memcheck --leak-check=full --track-fds=yes --num-callers=50 --show-reachable=yes --track-origins=yes --malloc-fill=0xff --free-fill=0xfe")
SET (CTEST_MEMORYCHECKCOMMAND_OPTIONS "-v --tool=memcheck --leak-check=full --track-fds=yes --num-callers=50 --show-reachable=yes --track-origins=yes --malloc-fill=0xff --free-fill=0xfe")
-SET (CTEST_TESTING_TIMEOUT 3600)
-SET (DART_TESTING_TIMEOUT 3600)
+SET (CTEST_TESTING_TIMEOUT 1200)
+SET (DART_TESTING_TIMEOUT 1200)