Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
74980113
Commit
74980113
authored
Aug 07, 2003
by
Brad King
Browse files
ENH: Clarification of help dumped when no arguments are given and no test file is found.
parent
5523c4a9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/ctest.cxx
View file @
74980113
...
...
@@ -89,6 +89,12 @@ int main (int argc, char *argv[])
// arguments to run tests.
if
(
argc
>
1
||
!
cmSystemTools
::
FileExists
(
"DartTestfile.txt"
))
{
if
(
argc
==
1
)
{
std
::
cout
<<
"*********************************"
<<
std
::
endl
;
std
::
cout
<<
"No test configuration file found!"
<<
std
::
endl
;
std
::
cout
<<
"*********************************"
<<
std
::
endl
;
}
cmDocumentation
doc
;
if
(
doc
.
CheckOptions
(
argc
,
argv
))
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment