ctest_submit.rst 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. ctest_submit
  2. ------------
  3. Submit results to a dashboard server.
  4. ::
  5. ctest_submit([PARTS ...] [FILES ...] [RETRY_COUNT count] [RETRY_DELAY delay][RETURN_VALUE res])
  6. By default all available parts are submitted if no PARTS or FILES are
  7. specified. The PARTS option lists a subset of parts to be submitted.
  8. Valid part names are:
  9. ::
  10. Start = nothing
  11. Update = ctest_update results, in Update.xml
  12. Configure = ctest_configure results, in Configure.xml
  13. Build = ctest_build results, in Build.xml
  14. Test = ctest_test results, in Test.xml
  15. Coverage = ctest_coverage results, in Coverage.xml
  16. MemCheck = ctest_memcheck results, in DynamicAnalysis.xml
  17. Notes = Files listed by CTEST_NOTES_FILES, in Notes.xml
  18. ExtraFiles = Files listed by CTEST_EXTRA_SUBMIT_FILES
  19. Submit = nothing
  20. The FILES option explicitly lists specific files to be submitted.
  21. Each individual file must exist at the time of the call.
  22. The RETRY_DELAY option specifies how long in seconds to wait after a
  23. timed-out submission before attempting to re-submit.
  24. The RETRY_COUNT option specifies how many times to retry a timed-out
  25. submission.