11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst { Worker } = require('worker_threads'); 41cb0ef41Sopenharmony_ci 51cb0ef41Sopenharmony_ciconst w = new Worker(` 61cb0ef41Sopenharmony_ciconst dns = require('dns'); 71cb0ef41Sopenharmony_cidns.lookup('nonexistent.org', () => {}); 81cb0ef41Sopenharmony_cirequire('worker_threads').parentPort.postMessage('0'); 91cb0ef41Sopenharmony_ci`, { eval: true }); 101cb0ef41Sopenharmony_ci 111cb0ef41Sopenharmony_ciw.on('message', common.mustCall(() => { 121cb0ef41Sopenharmony_ci // This should not crash the worker during a DNS request. 131cb0ef41Sopenharmony_ci w.terminate().then(common.mustCall()); 141cb0ef41Sopenharmony_ci})); 15