2019-08-09 09:01:43 +02:00
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
const tmpdir = require('../common/tmpdir');
|
|
|
|
|
|
|
|
// Run in a child process because 'out' is opened twice, blocking the tmpdir
|
|
|
|
// and preventing cleanup.
|
|
|
|
if (process.argv[2] !== 'child') {
|
|
|
|
// Parent
|
|
|
|
const assert = require('assert');
|
|
|
|
const { fork } = require('child_process');
|
|
|
|
tmpdir.refresh();
|
|
|
|
|
|
|
|
// Run test
|
|
|
|
const child = fork(__filename, ['child'], { stdio: 'inherit' });
|
|
|
|
child.on('exit', common.mustCall(function(code) {
|
|
|
|
assert.strictEqual(code, 0);
|
|
|
|
}));
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Child
|
2025-06-02 09:54:31 -07:00
|
|
|
// Allow overriding open().
|
|
|
|
fs.WriteStream.prototype.open = common.mustCall();
|
|
|
|
fs.createWriteStream('asd');
|