1
0
Fork 0

use portability path dir separator

This commit is contained in:
Willi Goesgens 2015-08-25 18:08:55 +02:00
parent f49d54344b
commit deb1b6d4f1
1 changed files with 2 additions and 2 deletions

View File

@ -363,7 +363,7 @@ def generateArangoshOutput(testName):
print("[" + (time () - startTime) + "s] done with " + testName);
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 + ']:');
}());
'''
@ -419,7 +419,7 @@ def generateArangoshRun(testName):
}
print("[" + (time () - startTime) + "s] " + rc);
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 + ']:');
}());
'''