mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
432 B
20 lines
432 B
13 years ago
|
var common = require('../common');
|
||
|
var assert = require('assert');
|
||
|
var net = require('net');
|
||
|
|
||
|
var gotError = false;
|
||
|
|
||
|
process.on('exit', function() {
|
||
11 years ago
|
assert(gotError instanceof Error);
|
||
13 years ago
|
});
|
||
|
|
||
|
// this should fail with an async EINVAL error, not throw an exception
|
||
|
net.createServer(assert.fail).listen({fd:0}).on('error', function(e) {
|
||
11 years ago
|
switch(e.code) {
|
||
|
case 'EINVAL':
|
||
|
case 'ENOTSOCK':
|
||
|
gotError = e;
|
||
|
break
|
||
|
}
|
||
13 years ago
|
});
|