We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dd9688 commit edd6a58Copy full SHA for edd6a58
test/parallel/test-regress-GH-4256.js test/parallel/test-process-domain-segfault.js
@@ -21,6 +21,11 @@
21
22
'use strict';
23
require('../common');
24
+
25
+// This test ensures that setting `process.domain` to `null` does not result in
26
+// node crashing with a segfault
27
+// https://github.com/nodejs/node-v0.x-archive/issues/4256
28
29
process.domain = null;
30
setTimeout(function() {
31
console.log('this console.log statement should not make node crash');
0 commit comments