summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestSubmitHandler.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'resolve/doc-spelling/CPackRPM'Brad King2010-07-201-1/+1
|\ | | | | | | | | | | 7739d78 Merge CPackRPM changes into doc-spelling 9203e91 Fix spelling errors reported by Lintian.
| * Fix spelling errors reported by Lintian.Kai Wasserbäch2010-07-131-1/+1
| | | | | | | | | | During a Lintian run on the binary packages of CMake in Debian I was notified of many spelling mistakes.
* | Activate retry code on any curl submit failure.David Cole2010-07-121-4/+5
| | | | | | | | | | | | | | | | Previously, we were only going into the retry block for time out conditions. But a "could not connect" response, or really any sort of curl failure, is also a condition where we should retry the submit if the user has requested a retry.
* | Mock checksum failure output for old CDash versionsZach Mullen2010-06-101-0/+13
| |
* | Testing for CTest checksumZach Mullen2010-06-101-26/+34
| |
* | CTest should resubmit in the checksum failed caseZach Mullen2010-06-051-17/+26
| |
* | Fix subscript out of range crashZach Mullen2010-06-031-1/+4
| |
* | Cross-platform fixes for checksum/retry codeZach Mullen2010-06-031-14/+20
| |
* | Checksums on CTest submit files, and retry timed out submissions.Zach Mullen2010-06-031-19/+151
|/
* Added a "-http1.0" option to ctest to make it submit using curl's http 1.0 ↵Zach Mullen2009-12-111-4/+53
| | | | option. Also added parsing of html reponse output to determine whether errors or warnings were sent in response from the server. If errors or warnings occurred, the response is output to stdout, and the "submission successful" message has been changed to accurately reflect whether or not warnings or errors were returned with the response.
* Convert CMake to OSI-approved BSD LicenseBrad King2009-09-281-14/+9
| | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range.
* Increase curl submit timeout. A submit will timeout if there are 120 seconds ↵David Cole2009-09-041-7/+11
| | | | of very little activity. 30 seconds was too short.
* Add curl timeout options to the SubmitUsingHTTP method. They were only in ↵David Cole2009-09-011-2/+7
| | | | the SubmitUsingFTP method.
* ENH: set an upload speed limit for ctestBill Hoffman2009-06-251-0/+5
|
* ENH: Disable the xmlrpc drop method by defaultBrad King2009-06-111-0/+17
| | | | | | | We've chosen to drop our default dependence on xmlrpc. Thus we disable the corresponding CTest submission method and remove the sources for building xmlrpc locally. Users can re-enable the method by setting the CTEST_USE_XMLRPC option to use a system-installed xmlrpc library.
* ENH: remove warning and improve messageBill Hoffman2009-04-111-6/+1
|
* ENH: remove cerr callBill Hoffman2009-04-101-1/+0
|
* ENH: add ability to control ssl cert checkingBill Hoffman2009-04-101-2/+36
|
* ENH: use 0 not FALSEBill Hoffman2009-03-311-1/+1
|
* ENH: add submit via cp modeBill Hoffman2009-03-311-3/+77
|
* ENH: allow for https submission if ctest is built with a curl that supports itBill Hoffman2009-03-121-4/+5
|
* COMP: Iterator version of std::set not available with vs6 implementation of ↵David Cole2009-02-041-3/+11
| | | | STL. Use explicit iteration to insert individual elements one at a time. Sigh.
* ENH: Add FILES arg to the ctest_submit command. BUG: Propagate the IsCDash ↵David Cole2009-02-031-7/+29
| | | | setting properly to the ctest configuration during a submit. Also, do not propagate TriggerSite for projects submitting to CDash. No triggers are necessary with CDash.
* BUG: Fix CTest submit-only operationBrad King2009-01-271-8/+1
| | | | | | | | We need to initialize cmCTestSubmitHandler on construction to make sure all parts get enabled by default. The recent fix to re-enable all parts on initialization broke submit-only operations because the handler did not initialize on construction. This also removes duplicate initialization code.
* ENH: fix part submission to not have memory of the last part submissionBill Hoffman2009-01-151-5/+5
|
* COMP: Fix const set find for Borland 5.5Brad King2009-01-141-1/+2
| | | | | | The Borland 5.5 compiler's STL set does not define correct signatures for its find() members, leading to build errors. This works around the problem.
* ENH: Teach ctest_submit about partsBrad King2009-01-121-1/+24
| | | | | This adds a PARTS option to the ctest_submit command which tells it to submit only parts whose names are listed with the option.
* ENH: Divide CTest file submission list by partBrad King2009-01-121-16/+21
| | | | | | This splits the list of files for CTest to submit into those belonging to each part. The set is recombined just before submission. Later this will allow piecewise submissions.
* STYLE: fix line lenBill Hoffman2008-03-041-4/+6
|
* ENH: allow cdash not to triggerBill Hoffman2008-02-291-27/+42
|
* COMP: Fix check for file-too-big to avoid warnings.Brad King2007-11-071-1/+2
|
* COMP: Fix warnings on 64-bit Mac OS X build. Patch from issue #3697.Brad King2007-11-051-1/+9
|
* COMP: fix line length style errorBill Hoffman2006-12-051-1/+2
|
* ENH: put checks on vector before referencing begin iteratorBill Hoffman2006-12-021-23/+39
|
* ENH: Add options to build with system utility libraries. Organize inclusion ↵Brad King2006-10-191-8/+9
| | | | of third party libraries into a single header per library. This addresses bug#3653.
* ENH: Add support for special tracks, fix options of handlers so that the -R, ↵Andy Cedilnik2006-04-281-0/+6
| | | | -U, and so on work in the new style scripting
* ENH: add support for win64 for visual studio 2005 ide and nmake, also fix ↵Bill Hoffman2006-03-301-1/+1
| | | | warnings produced by building for win64
* STYLE: Fix some style issuesAndy Cedilnik2006-03-101-187/+198
|
* STYLE: Fix some style issuesAndy Cedilnik2006-03-091-132/+228
|
* BUG: More VS8 fixesAndy Cedilnik2006-03-011-12/+30
|
* ENH: More verbosityAndy Cedilnik2005-10-041-0/+3
|
* BUG: Remove duplicate prefixAndy Cedilnik2005-07-211-1/+1
|
* ENH: Add a way to submit extra files to the dashboardAndy Cedilnik2005-07-181-6/+18
|
* BUG: On windows there can be a problem because scp does not handle drive ↵Andy Cedilnik2005-07-061-1/+14
| | | | names. This uses relative path for scp
* BUG: Exit properly on SCP submissionAndy Cedilnik2005-06-241-0/+1
|
* COMP: Remove warningsAndy Cedilnik2005-06-241-11/+10
|
* ENH: Move curl to utilitiesAndy Cedilnik2005-06-241-1/+1
|
* ENH: Make iterators constAndy Cedilnik2005-06-231-5/+5
|
* ENH: Several improvements with the way things are handled. Also, support ↵Andy Cedilnik2005-06-231-31/+46
| | | | multiple submited files
* ENH: Add superclass for all commands and handlers. Improve handlers to have ↵Andy Cedilnik2005-06-171-0/+11
| | | | initialization code, and start initializing ctest when start is invoked