Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
benchmark
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
benchmark
Commits
4b9f43e2
Commit
4b9f43e2
authored
Jan 13, 2019
by
Andriy Berestovskyy
Committed by
Roman Lebedev
Jan 13, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix header lines length (#752)
Commit
17a012d7
added a newline to the str, so the line built from str.length() is one character longer than it should be.
parent
eec9a8e4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
AUTHORS
AUTHORS
+1
-0
CONTRIBUTORS
CONTRIBUTORS
+1
-0
console_reporter.cc
src/console_reporter.cc
+1
-2
No files found.
AUTHORS
View file @
4b9f43e2
...
@@ -9,6 +9,7 @@
...
@@ -9,6 +9,7 @@
# Please keep the list sorted.
# Please keep the list sorted.
Albert Pretorius <pretoalb@gmail.com>
Albert Pretorius <pretoalb@gmail.com>
Andriy Berestovskyy <berestovskyy@gmail.com>
Arne Beer <arne@twobeer.de>
Arne Beer <arne@twobeer.de>
Carto
Carto
Christopher Seymour <chris.j.seymour@hotmail.com>
Christopher Seymour <chris.j.seymour@hotmail.com>
...
...
CONTRIBUTORS
View file @
4b9f43e2
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
# Please keep the list sorted.
# Please keep the list sorted.
Albert Pretorius <pretoalb@gmail.com>
Albert Pretorius <pretoalb@gmail.com>
Andriy Berestovskyy <berestovskyy@gmail.com>
Arne Beer <arne@twobeer.de>
Arne Beer <arne@twobeer.de>
Billy Robert O'Neal III <billy.oneal@gmail.com> <bion@microsoft.com>
Billy Robert O'Neal III <billy.oneal@gmail.com> <bion@microsoft.com>
Chris Kennelly <ckennelly@google.com> <ckennelly@ckennelly.com>
Chris Kennelly <ckennelly@google.com> <ckennelly@ckennelly.com>
...
...
src/console_reporter.cc
View file @
4b9f43e2
...
@@ -64,9 +64,8 @@ void ConsoleReporter::PrintHeader(const Run& run) {
...
@@ -64,9 +64,8 @@ void ConsoleReporter::PrintHeader(const Run& run) {
str
+=
" UserCounters..."
;
str
+=
" UserCounters..."
;
}
}
}
}
str
+=
"
\n
"
;
std
::
string
line
=
std
::
string
(
str
.
length
(),
'-'
);
std
::
string
line
=
std
::
string
(
str
.
length
(),
'-'
);
GetOutputStream
()
<<
line
<<
"
\n
"
<<
str
<<
line
<<
"
\n
"
;
GetOutputStream
()
<<
line
<<
"
\n
"
<<
str
<<
"
\n
"
<<
line
<<
"
\n
"
;
}
}
void
ConsoleReporter
::
ReportRuns
(
const
std
::
vector
<
Run
>&
reports
)
{
void
ConsoleReporter
::
ReportRuns
(
const
std
::
vector
<
Run
>&
reports
)
{
...
...
Write
Preview
Markdown
is supported
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