Bill Hoffman
3b73cdc89f
ENH: add a CDash measured value showing the reason for passed and failed tests based on regular expressions
2009-02-24 17:23:51 -05:00
Brad King
1353ed0bd8
BUG: Fix cmake-gui docs generation PATH feature
...
Automatic addition of the Qt DLL location to PATH can be done only for
generators that use a Windows shell.
2009-02-24 17:07:04 -05:00
Miguel A. Figueroa-Villanueva
cf55e01ada
BUG: Using PROPERTY COMPILE_DEFINITIONS_DEBUG to support Debug only preprocessor options (e.g., _DEBUG __WXDEBUG__).
2009-02-24 16:49:15 -05:00
Brad King
b5db18e723
ENH: Added cmXMLParser::FindAttribute method
...
This method will help subclasses look for element attributes in their
StartElement methods.
2009-02-24 15:43:49 -05:00
Brad King
d033f0d2d1
ENH: Allow cmXMLParser subclasses to report errors
...
This tells cmXMLParser to report error messages through virtual method
cmXMLParser::ReportError so that subclasses can override the default
report.
2009-02-24 15:43:37 -05:00
Brad King
506e745c37
ENH: Teach cmCTestSVN to load repo/tree relation
...
This teaches cmCTestSVN::NoteNewRevision to save the repository URL
checked out in the work tree, the repository root, and the path below
the root to reach the full URL.
2009-02-24 15:43:25 -05:00
Brad King
3f4064f7ac
ENH: Add cmCTest::DecodeURL method
...
This new method decodes the "percent-encoding" used in URL syntax.
2009-02-24 15:43:06 -05:00
Brad King
39f8b91125
BUG: Remove implicit include dir suppression
...
We used to suppress generation of -I/usr/include (and on OSX also
-I/usr/local/include). This behavior seems to cause more trouble than
it's worth, so I'm removing it until someone encounters the original
problem it fixed. See issue #8598 .
2009-02-24 15:37:09 -05:00
Brad King
ff32962a68
ENH: Test included header in Fortran preprocessing
...
This extends the Fortran preprocessing test to include a header file
through a preprocessor directive.
2009-02-24 14:32:31 -05:00
Brad King
66f2edbe63
BUG: Fix Fortran implicit dependency include path
...
The previous change to Source/cmDependsFortran.cxx while refactoring
implicit dependency scanning configuration rules completely broke
loading of the include file search path while scanning Fortran
dependencies. This adds the line that should have been added during the
previous change to load the include path correctly.
2009-02-24 14:32:25 -05:00
Brad King
de3dedb4ea
ENH: Factor out VCS work tree revision checks
...
This moves checks of the work tree revision before and after update from
cmCTestUpdateHandler::ProcessHandler into the cmCTestVC hierarchy.
2009-02-24 12:52:36 -05:00
Brad King
d76bc78a12
ENH: Factor out nightly start time computation
...
Move generation of the nightly start time string from
cmCTestUpdateHandler::ProcessHandler into cmCTestVC.
2009-02-24 12:50:48 -05:00
Brad King
fdd0d2a32b
ENH: Factor out svn work tree cleanup
...
This removes work tree cleanup from cmCTestUpdateHandler and adds an
interface for it in cmCTestVC with an implementation in cmCTestSVN.
2009-02-24 12:50:15 -05:00
Brad King
4e4f2a3a10
ENH: Create cmCTestVC::RunChild and parse helpers
...
This method will help VCS tool subclasses run child processes and log
the output while parsing it.
2009-02-24 12:49:57 -05:00
Brad King
1595b8e69e
ENH: Add install(DIRECTORY) option 'OPTIONAL'
...
This adds the OPTIONAL option to the install(DIRECTORY) command. It
tells the installation rule that it is not an error if the source
directory does not exist. See issue #8394 .
2009-02-24 11:41:40 -05:00
Brad King
a79f8cd4c1
ENH: Refactor install(DIRECTORY) argument parsing
...
We previously used several booleans with at most one set to true at a
time to track argument parsing state. This refactors it to use one
enumeration.
2009-02-24 11:41:00 -05:00
Brad King
5a7ac0def1
COMP: cmProcessTools::OutputParser virtual dtor
...
This class has virtual methods and therefore should have a virtual
destructor.
2009-02-24 11:08:38 -05:00
Brad King
1936499250
ENH: Create cmProcessTools to parse child output
...
This class provides a RunProcess method to run a child process and send
its output to an abstract parsing interface. This also provides a
simple line parser and logger implementing the parsing interface.
2009-02-24 10:40:18 -05:00
Brad King
6bdc2b5d99
ENH: Add cmCTestCVS and cmCTestSVN
...
These cmCTestVC subclasses will implement interaction with CVS and SVN
tools.
2009-02-24 10:39:55 -05:00
Brad King
1b8ea27bd1
ENH: Create cmCTestVC for VCS interaction
...
This creates cmCTestVC, the base for a forthcoming class hierarchy to
interact with version control systems.
2009-02-24 10:39:28 -05:00
David Cole
60a46ca76e
STYLE: Fix line length violation.
2009-02-24 09:34:03 -05:00
Brad King
0d66aa3915
ENH: Factor out VCS tool detection
...
In cmCTestUpdateHandler, this factors out version control tool detection
from the monolithic cmCTestUpdateHandler::ProcessHandler to separate
methods. This also places priority on detection of the tool managing
the source tree since using any other tool will cause errors.
2009-02-24 09:09:43 -05:00
Brad King
844df75676
ENH: Factor out initial checkout method
...
This moves the initial checkout code from the monolithic
cmCTestUpdateHandler::ProcessHandler to a separate method
cmCTestUpdateHandler::InitialCheckout.
2009-02-24 09:09:14 -05:00
Brad King
0d2f241e1a
ENH: Help cmake-gui docs generation on Windows
...
We use a custom command to run 'cmake-gui --help...' to generate the
documentation for the application. Since this is a Qt application, the
executable must find the Qt DLLs in order to run. As a convenience, if
QtCore4.dll appears next to qmake.exe, we put its location in the PATH
environment variable when running the custom command on Windows.
2009-02-24 09:00:42 -05:00
Philip Lowman
a58e183636
BUG: Fix issue #8576 FindBoost regression finding static libs, impacts MinGW and Intel/Windows compilers.
2009-02-24 00:49:01 -05:00
Brad King
0458da3ba9
STYLE: Nightly Date Stamp
2009-02-24 00:01:07 -05:00
Brad King
ac89c8004b
BUG: Fix CTest.UpdateCVS/SVN tests for win slashes
...
This fixes the tests to allow windows slashes in reported file names in
the generated Update.xml file.
2009-02-23 16:54:53 -05:00
Brad King
a6c0784489
ENH: Refactor quoting of VCS tool command
...
Previously we pre-quoted the command line tool path. This avoids it by
quoting the command everywhere it is used, thus preserving access to the
original, unquoted command.
2009-02-23 15:59:39 -05:00
Brad King
430b376a5b
ENH: Test svn updates with space in author name
...
This enhances the CTest.UpdateSVN test with a space in the test author
name. It will check that author name parsing works correctly.
2009-02-23 15:59:20 -05:00
Brad King
5b49f22caf
ENH: Enhance CTest.UpdateCVS/SVN tests
...
This adds a source tree subdirectory to the content of the test
projects. It also smoke tests more than one revision worth of changes.
2009-02-23 15:59:07 -05:00
Brad King
a16c857c30
ENH: Better failure output from CTest.Update*
...
This teaches CTestUpdateCommon to report the process exit condition from
failed child processes executed during tests.
2009-02-23 15:58:44 -05:00
David Cole
c148714b82
ENH: Add license file presentation to the Drag-N-Drop dmg file CPack generator. Fixes issue #8442 . Thanks to Clinton Stimpson for the patch.
2009-02-23 13:25:18 -05:00
Brad King
9185f36b06
STYLE: Nightly Date Stamp
2009-02-23 00:01:08 -05:00
Brad King
089896ae0a
STYLE: Nightly Date Stamp
2009-02-22 00:01:06 -05:00
Bill Hoffman
71577b1d00
BUG: make sure the gui still runs...
2009-02-21 14:38:35 -05:00
Bill Hoffman
9cd850c4c7
BUG: make sure an x server is not required for the build
2009-02-21 14:23:32 -05:00
Brad King
06a61c8518
STYLE: Nightly Date Stamp
2009-02-21 00:01:02 -05:00
Brad King
31e652059a
ENH: Document APPEND option in ctest_* commands
...
This adds documentation of the APPEND option to the configure, build,
test, memcheck, and coverage commands. The docs leave specific
semantics for the dashboard server to define.
2009-02-20 15:51:03 -05:00
Brad King
ab1b9b45ff
ENH: Improve ctest_* command documentation
...
This corrects the terse documentation and adds detail to the full
documentation of some commands. It also normalizes the layout of the
documentation string endings to make adding lines easier.
2009-02-20 15:50:57 -05:00
Brad King
17dc49c013
ENH: More documentation for ctest_submit command
...
This clarifies the terse documentation and lists valid values for PARTS.
2009-02-20 15:50:15 -05:00
Brad King
f04fed206f
ENH: Clarify docs of old *_OUTPUT_PATH vars
...
This clarifies the documentation of EXECUTABLE_OUTPUT_PATH and
LIBRARY_OUTPUT_PATH to sound less like deprecation.
2009-02-20 14:03:41 -05:00
David Cole
c6051d7ad0
STYLE: Fix style line-too-long violations.
2009-02-20 10:14:40 -05:00
Brad King
20da2cbe03
STYLE: Nightly Date Stamp
2009-02-20 00:01:05 -05:00
Clinton Stimpson
08ca8f5053
ENH: Support COMPONENTS argument to find_package().
...
See bug #8542 .
2009-02-19 16:04:57 -05:00
Clinton Stimpson
abdcf91422
ENH: Support version argument in find_package().
...
See bug #8542 .
2009-02-19 15:51:43 -05:00
Bill Hoffman
819a4f2e57
ENH: make sure multiple archs are only tested when the work
2009-02-19 15:24:44 -05:00
Bill Hoffman
756cb547f3
BUG: fix xcode depend issue and add a test for it
2009-02-19 11:51:24 -05:00
David Cole
6e87aa49e6
BUG: Fix issue #8253 - handle xib file extension in Xcode projects so that double clicking on xib files opens them up in Interface Builder. Thanks to baron_roberts for the patch.
2009-02-19 11:20:09 -05:00
David Cole
1bf669207b
BUG: A little bit more refactoring from BundleGenerator to DragNDropGenerator. See issue #8556 . Thanks for Clinton Stimpson for the patch.
2009-02-19 10:39:08 -05:00
Bill Hoffman
65c1511814
BUG: fix depend bug again for Xcode
2009-02-19 10:31:16 -05:00