mirror of https://gitee.com/bigwinds/arangodb
use portability path dir separator
This commit is contained in:
parent
f49d54344b
commit
deb1b6d4f1
|
@ -363,7 +363,7 @@ def generateArangoshOutput(testName):
|
||||||
|
|
||||||
print("[" + (time () - startTime) + "s] done with " + testName);
|
print("[" + (time () - startTime) + "s] done with " + testName);
|
||||||
output = highlight("js", output);
|
output = highlight("js", output);
|
||||||
fs.write(outputDir + '/' + testName + '.generated', output);
|
fs.write(outputDir + fs.pathSeparator + testName + '.generated', output);
|
||||||
checkForOrphanTestCollections('not all collections were cleaned up after ' + sourceFile + ' Line[' + startLineCount + '] [' + testName + ']:');
|
checkForOrphanTestCollections('not all collections were cleaned up after ' + sourceFile + ' Line[' + startLineCount + '] [' + testName + ']:');
|
||||||
}());
|
}());
|
||||||
'''
|
'''
|
||||||
|
@ -419,7 +419,7 @@ def generateArangoshRun(testName):
|
||||||
}
|
}
|
||||||
print("[" + (time () - startTime) + "s] " + rc);
|
print("[" + (time () - startTime) + "s] " + rc);
|
||||||
output = highlight("js", output);
|
output = highlight("js", output);
|
||||||
fs.write(outputDir + '/' + testName + '.generated', output);
|
fs.write(outputDir + fs.pathSeparator + testName + '.generated', output);
|
||||||
checkForOrphanTestCollections('not all collections were cleaned up after ' + sourceFile + ' Line[' + startLineCount + '] [' + testName + ']:');
|
checkForOrphanTestCollections('not all collections were cleaned up after ' + sourceFile + ' Line[' + startLineCount + '] [' + testName + ']:');
|
||||||
}());
|
}());
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in New Issue