mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 23:06:47 +00:00
21 lines
448 B
JavaScript
21 lines
448 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
var gotError = false;
|
|
|
|
process.on('exit', function() {
|
|
assert(gotError instanceof Error);
|
|
});
|
|
|
|
// this should fail with an async EINVAL error, not throw an exception
|
|
net.createServer(assert.fail).listen({fd:0}).on('error', function(e) {
|
|
switch (e.code) {
|
|
case 'EINVAL':
|
|
case 'ENOTSOCK':
|
|
gotError = e;
|
|
break;
|
|
}
|
|
});
|