This commit is contained in:
Ward Fisher 2012-11-15 17:16:00 +00:00
parent 9ae21209ae
commit d105b9ddbd
2 changed files with 7 additions and 3 deletions

View File

@ -41,8 +41,7 @@ set (CTEST_UPDATE_COMMAND "svn")
set (CTEST_START_WITH_EMPTY_BINARY_DIRECTORY TRUE)
## Kick off the test
ctest_empty_binary_directory(${CTEST_BINARY_DIRECTORY})
SET (CTEST_START_WITH_EMPTY_BINARY_DIRECTORY_ONCE 1)
while (${CTEST_ELAPSED_TIME} LESS 36000)
set (START_TIME ${CTEST_ELAPSED_TIME})
@ -52,9 +51,14 @@ while (${CTEST_ELAPSED_TIME} LESS 36000)
if (count GREATER 0)
message("Count ${count} > 0, running analysis.")
ctest_configure()
message("Configuring")
ctest_build()
message("Building")
ctest_test()
message("Testing")
ctest_submit()
message("Submitting")
message("Analysis complete.")
endif()
ctest_sleep( ${START_TIME} 60 ${CTEST_ELAPSED_TIME})
endwhile()

View File

@ -521,7 +521,7 @@ builddatasublist(Datalist* dl)
d.nctype = NC_COMPOUND;
d.lineno = (dl->length > 0?dl->data[0].lineno:0);
d.value.compoundv = dl;
d.filled = NULL;
d.filled = 0;
return d;
}