log file location

This commit is contained in:
Florian Dold 2020-08-07 11:36:18 +05:30
parent 32755f5475
commit b4a4a9e292
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B

View File

@ -883,7 +883,7 @@ export function runTest(testMain: (gc: GlobalTestState) => Promise<void>) {
let ret = 0;
try {
gc = new GlobalTestState({
testDir: fs.mkdtempSync("taler-integrationtest-"),
testDir: fs.mkdtempSync(path.join(os.tmpdir(), "taler-integrationtest-")),
});
updateCurrentSymlink(gc.testDir);
await testMain(gc);