1
0
Fork 0

Merge branch 'devel' of ssh://github.com/triAGENS/ArangoDB into devel

This commit is contained in:
James 2014-09-26 09:33:09 +01:00
commit 16edfa49ee
2 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ var generatePerfReportXML = function (reportName, testdata) {
var generatePerfReportGrinderCSV = function (reportName, testdata) {
"use strict";
var x = "Thread, Run, Test, Start time (ms since Epoch), Test time, Errors, HTTP response code, HTTP response length, HTTP response errors, Time to resolve host, Time to establish connection, Time to first byte, New connections\n";
var x = "Thread, Run, Test, Start time (ms since Epoch), Test time, Errors, HTTP response code, HTTP response length, HTTP response errors, Time to resolve host, Time to establish connection, Time to first byte, New connections";
for (var testname in testdata) {
@ -53,7 +53,7 @@ var generatePerfReportGrinderCSV = function (reportName, testdata) {
{
var s = testdata[testname][testCalculation].duration;
if (!isNaN(s)) {
x = x + '0, 0, ' + testname + '/' + testCalculation + ',' + require("internal").time() + ', ' + s + ', 0, 0, 0, 0, 0, 0, 0, 0\n';
x = x + '\n0, 0, ' + testname + '/' + testCalculation + ',' + require("internal").time() + ', ' + s + ', 0, 0, 0, 0, 0, 0, 0, 0';
}
}
}

View File

@ -1,4 +1,4 @@
var internalMembers = ["code", "error", "status", "duration", "failed", "total"];
var internalMembers = ["code", "error", "status", "duration", "failed", "total", "message"];
var fs = require("fs");
var print = require("internal").print;