Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5_fork
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Eteri
erp5_fork
Commits
07a3db96
Commit
07a3db96
authored
Aug 23, 2013
by
Benjamin Blanc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_test_result: Fix bug on x abcissa when test suite document change
parent
8c56b7ad
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
6 deletions
+14
-6
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
+13
-5
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 @
07a3db96
...
...
@@ -65,8 +65,9 @@ body {\n
.bullet .title { font-size: 14px; font-weight: bold; }\n
</style>
\n
\n
<script
src=
"http://d3js.org/d3.v3.
min.
js"
></script>
\n
<script
src=
"http://d3js.org/d3.v3.js"
></script>
\n
<script
src=
"//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"
></script>
\n
\n
\n
</head>
\n
<body>
\n
...
...
@@ -88,7 +89,15 @@ body {\n
stats = JSON.parse(json);\n
xs = stats.xs;\n
\n
//TODO: smooth the intterpolation in a new curve\n
if (xs.length != stats.test.length){\n
alert("The number of configuration to test ("+xs.length+", defined on test suite document) is \\\n
lower than the number of tested configurations for this test result document ("+stats.test.length+").");\n
alert("x-scale will not be respected.");\n
for(var i=xs.length; i
<stats.test.length
;
i++){\n
xs[i]=xs[xs.length-1]+1;\n
}\n
}\n
\n
\n
x_max =
xs[stats.test.length-1];\n
//
just
for
fun..\n
...
...
@@ -96,7 +105,7 @@ x_max = xs[stats.test.length-1];\n
//
polynomial
interpolation
using
Lagrande
method\n
var
n =
stats.test.length;\n
//
compute
and
assign
value
to
display\n
for
(var i=0; i
<n
;
i++)
{\n
for(var
i=
0;
i<n;
i++)
{\n
stats.test[i]["value"]
=
3600
*
stats.test[i].created_docs
/
stats.test[i].duration;\n
}\n
//
Lagrange
interpolation\n
...
...
@@ -145,9 +154,9 @@ var margin = {top: 20, right: 20, bottom: 30, left: 40},\n
\n
var
x0 =
d3.scale.ordinal()\n
.rangeRoundBands([0,
width],
.1);\n
\n
var
x1 =
d3.scale.ordinal();\n
\n
\n
var
y =
d3.scale.linear()\n
.range([height,
0]);\n
\n
...
...
@@ -248,7 +257,6 @@ var svg = d3.select("body").append("svg")\n
.attr("stroke-width",
1)\n
.attr("stroke",
"red");\n
}\n
\n
\n
//smoothed
curve
data
computation\n
var
v_1 =
[];\n
...
...
bt5/erp5_test_result/bt/revision
View file @
07a3db96
266
\ No newline at end of file
267
\ 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