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.
13 lines
420 B
13 lines
420 B
8 years ago
|
'use strict';
|
||
|
|
||
|
// We don't care about `err` in the callback function of `dns.resolve4`. We just
|
||
|
// want to test whether `dns.setServers` that is run after `resolve4` will cause
|
||
|
// a crash or not. If it doesn't crash, the test succeeded.
|
||
|
|
||
|
const common = require('../common');
|
||
|
const dns = require('dns');
|
||
|
|
||
|
dns.resolve4('google.com', common.mustCall(function(/* err, nameServers */) {
|
||
|
dns.setServers([ '8.8.8.8' ]);
|
||
|
}));
|