1
0
Fork 0
This commit is contained in:
Jan 2017-08-30 11:28:51 +02:00 committed by GitHub
parent c662dfc863
commit 2f05b0ffeb
2 changed files with 3 additions and 2 deletions

View File

@ -489,7 +489,7 @@ function unitTest (cases, options) {
// running all tests
for (let n = 0; n < caselist.length; ++n) {
const currentTest = caselist[n];
var localOptions = _.cloneDeep(options)
var localOptions = _.cloneDeep(options);
print(BLUE + '================================================================================');
print('Executing test', currentTest);

View File

@ -34,6 +34,7 @@ const optionsDocumentation = [
const fs = require('fs');
const pu = require('@arangodb/process-utils');
const tu = require('@arangodb/test-utils');
const _ = require('lodash');
const toArgv = require('internal').toArgv;
@ -47,7 +48,7 @@ const RESET = require('internal').COLORS.COLOR_RESET;
function runArangodRecovery (instanceInfo, options, script, setup, count) {
if (!instanceInfo.recoveryArgs) {
let tempDir = fs.getTempPath();
let td = fs.join(tempDir, `${count}`)
let td = fs.join(tempDir, `${count}`);
if (setup) {
pu.cleanupDBDirectoriesAppend(td);
}