Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tapasco
tapasco
Commits
877e715c
Commit
877e715c
authored
Jun 09, 2017
by
Jens Korinth
Browse files
Bugfix in output file name of tapasco_benchmark
parent
3190c491
Changes
1
Hide whitespace changes
Inline
Side-by-side
arch/tests/tapasco_benchmark.cpp
View file @
877e715c
...
...
@@ -185,8 +185,8 @@ int main(int argc, const char *argv[]) {
// dump it
stringstream
ss
;
ss
<<
platform
<<
".benchmark"
;
cout
<<
"Dumping benchmark Json to "
<<
(
argc
>=
2
?
argv
[
1
]
:
ss
.
str
())
<<
endl
;
ofstream
f
(
argc
>=
2
?
argv
[
1
]
:
ss
.
str
());
cout
<<
"Dumping benchmark Json to "
<<
(
argc
>=
3
?
argv
[
2
]
:
ss
.
str
())
<<
endl
;
ofstream
f
(
argc
>=
3
?
argv
[
2
]
:
ss
.
str
());
f
<<
benchmark
.
dump
();
f
.
close
();
}
catch
(
const
char
*
msg
)
{
...
...
Jens Korinth
@jk
mentioned in commit
a831b501
·
Jul 14, 2017
mentioned in commit
a831b501
mentioned in commit a831b5015df6bd8f8d23ddd334a3b1159392de92
Toggle commit list
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