Lines Matching +full:debian +full:- +full:testing +full:- +full:asan
22 /* eslint-disable node-core/crypto-check */
29 // Do not require 'os' until needed so that test-os-checked-function can
75 const flagStart = source.search(/\/\/ Flags:\s+--/) + 10;
82 if (source[flagEnd - 1] === '\r') {
83 flagEnd--;
93 // If the binary was built without-ssl then the crypto flags are
106 (process.features.inspector || !flag.startsWith('--inspect'))) {
130 const isAsan = process.env.ASAN !== undefined;
208 // Debian/Ubuntu
209 'ip6-localhost',
210 'ip6-loopback',
213 'ipv6-localhost',
214 'ipv6-loopback',
223 const pipeName = `node-test.${process.pid}.sock`;
228 // `$node --abort-on-uncaught-exception $file child`
234 // continuous testing and developers' machines
235 testCmd += 'ulimit -c 0 && ';
237 testCmd += `"${process.argv[0]}" --abort-on-uncaught-exception `;
315 // TODO(@ethan-arrowood): Similar to previous checks, this can be temporary
452 const _return = function() { // eslint-disable-line func-style
458 // Refs: https://tc39.es/ecma262/#sec-function-instances
511 // On non-Windows platforms, this always returns `true`
522 err.stack; // eslint-disable-line no-unused-expressions
609 // (i) Exception breakpoint, if --abort-on-uncaught-exception is on
616 // When using --abort-on-uncaught-exception, V8 will use
694 // Useful for testing expected internal/error objects
704 // The error message should be non-enumerable
774 return -1;
785 while (fs.fstatSync(fd--) && fd > 0);
805 return ` Received ${inspect(input, { depth: -1 })}`;
816 skip('skipping - dumb terminal');
953 re = /Loopback Pseudo-Interface/;
969 execSync('sysctl -n security.jail.jailed').toString() === '1\n') {
997 // Jailed network interfaces are a bit special - since we need to jump
1023 opensslCli = path.join(path.dirname(process.execPath), 'openssl-cli');