Skip to content
GitLab
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
a32c7c39
Commit
a32c7c39
authored
Feb 11, 2003
by
Andy Cedilnik
Browse files
Fix cont and remove comments
parent
a69c70d2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Source/cmCTest.cxx
View file @
a32c7c39
...
...
@@ -283,8 +283,8 @@ void cmCTest::Initialize()
if
(
tag
.
size
()
==
0
)
{
#ifdef HAVE_CURL
std
::
cout
<<
"TestModel: "
<<
this
->
GetTestModelString
()
<<
std
::
endl
;
std
::
cout
<<
"TestModel: "
<<
m_TestModel
<<
std
::
endl
;
//
std::cout << "TestModel: " << this->GetTestModelString() << std::endl;
//
std::cout << "TestModel: " << m_TestModel << std::endl;
if
(
m_TestModel
==
cmCTest
::
NIGHTLY
)
{
int
hour
;
...
...
@@ -303,7 +303,7 @@ void cmCTest::Initialize()
m_DartConfiguration
[
"NightlyStartTime"
].
c_str
(),
&
tctime
);
tctime
=
time
(
0
);
std
::
cout
<<
"Seconds: "
<<
tctime
<<
std
::
endl
;
//
std::cout << "Seconds: " << tctime << std::endl;
if
(
ntime
>
tctime
)
{
// If nightlySeconds is in the past, this is the current
...
...
@@ -312,9 +312,9 @@ void cmCTest::Initialize()
// dashboard to be opened, so subtract 24 hours to get the
// time of the current open dashboard
ntime
-=
(
24
*
60
*
60
);
std
::
cout
<<
"Pick yesterday"
<<
std
::
endl
;
//
std::cout << "Pick yesterday" << std::endl;
}
std
::
cout
<<
"nightlySeconds: "
<<
ntime
<<
std
::
endl
;
//
std::cout << "nightlySeconds: " << ntime << std::endl;
lctime
=
gmtime
(
&
ntime
);
}
#endif
...
...
Source/cmCTest.h
View file @
a32c7c39
...
...
@@ -203,7 +203,7 @@ private:
std
::
string
m_StartTest
;
std
::
string
m_EndTest
;
bool
m_TestModel
;
int
m_TestModel
;
/**
* Generate the Dart compatible output
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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