ctest_submit.rst 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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. Upload = Files prepared for upload by ctest_upload(), in Upload.xml
  20. Submit = nothing
  21. The FILES option explicitly lists specific files to be submitted.
  22. Each individual file must exist at the time of the call.
  23. The RETRY_DELAY option specifies how long in seconds to wait after a
  24. timed-out submission before attempting to re-submit.
  25. The RETRY_COUNT option specifies how many times to retry a timed-out
  26. submission.