Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
OpenGEODE
Commits
67446fff
Commit
67446fff
authored
Aug 26, 2014
by
dbarbera
Browse files
Fix bin names in benchmark execution
parent
b733c071
Changes
1
Show whitespace changes
Inline
Side-by-side
tests/regression/benchmark.py
View file @
67446fff
...
...
@@ -34,8 +34,8 @@ def benchmark(testfolder):
result
[
"status"
]
=
"ERROR"
return
result
llvm_bin
=
os
.
path
.
join
(
testfolder
,
"test_
ada
"
)
ada_bin
=
os
.
path
.
join
(
testfolder
,
"test_
llvm
"
)
llvm_bin
=
os
.
path
.
join
(
testfolder
,
"test_
llvm
"
)
ada_bin
=
os
.
path
.
join
(
testfolder
,
"test_
ada
"
)
for
bin_name
in
(
llvm_bin
,
ada_bin
):
if
not
os
.
path
.
isfile
(
bin_name
):
...
...
@@ -45,8 +45,8 @@ def benchmark(testfolder):
result
.
update
({
"status"
:
"OK"
,
"size"
:
{
"ada"
:
size
(
llvm
_bin
),
"llvm"
:
size
(
ada
_bin
),
"ada"
:
size
(
ada
_bin
),
"llvm"
:
size
(
llvm
_bin
),
},
"time"
:
{
"ada"
:
time
(
ada_bin
),
...
...
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