Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Laurent S
erp5
Commits
fda7fda2
Commit
fda7fda2
authored
Sep 12, 2013
by
Benjamin Blanc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_test_result: correct speedup and efficiency when n=1 case not tested.
parent
804896d8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
bt5/erp5_test_result/SkinTemplateItem/portal_skins/erp5_test_result/test_result_graph.html.xml
.../portal_skins/erp5_test_result/test_result_graph.html.xml
+5
-3
bt5/erp5_test_result/bt/revision
bt5/erp5_test_result/bt/revision
+1
-1
No files found.
bt5/erp5_test_result/SkinTemplateItem/portal_skins/erp5_test_result/test_result_graph.html.xml
View file @
fda7fda2
...
...
@@ -102,6 +102,10 @@ x-scale may not be respected."+bracket_left+"h1"+bracket_right_end;\n
}\n
}\n
\n
if
(xs[0]
>
1){\n
document.write("*Speedup and efficiency determined using case n="+xs[0]+" as perfect.");\n
}\n
\n
x_max = xs[stats.test.length-1];\n
// just for fun..\n
//x_max = xs[xs.length-1]+xs[xs.length-1]/4;\n
...
...
@@ -368,10 +372,8 @@ var svg = d3.select("body").append("svg")\n
\n
<script
type=
"text/javascript"
>
\n
bracket_left = \'
<
\';\n
bracket_right = \'>\';\n
bracket_right_end = \'/>\';\n
\n
F1 = (3600 * stats.test[0].created_docs / stats.test[0].duration);\n
F1 = (3600 * stats.test[0].created_docs / stats.test[0].duration)
/xs[0]
;\n
for(var i=0; i
<stats.test.length
;
i++){\n
document.write(bracket_left+"tr
>
");\n
docs = 3600 * stats.test[i].created_docs / stats.test[i].duration;\n
...
...
bt5/erp5_test_result/bt/revision
View file @
fda7fda2
278
\ No newline at end of file
279
\ No newline at end of file
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