ports/devel/electron29/files/patch-electron_spec_api-utility-process-spec.ts
Hiroki Tagato 5113fb8205 devel/electron29: update to 29.4.3
Changelog: https://github.com/electron/electron/releases/tag/v29.4.3

Reported by:	GitHub (watch releases)
Security:	0e73964d-053a-481a-bf1c-202948d68484
2024-06-29 16:10:04 +09:00

11 lines
640 B
TypeScript

--- electron/spec/api-utility-process-spec.ts.orig 2024-06-27 17:50:20 UTC
+++ electron/spec/api-utility-process-spec.ts
@@ -418,7 +418,7 @@ describe('utilityProcess module', () => {
await closeWindow(w);
});
- ifit(process.platform === 'linux')('allows executing a setuid binary with child_process', async () => {
+ ifit(process.platform === 'linux' || process.platform === 'freebsd')('allows executing a setuid binary with child_process', async () => {
const child = utilityProcess.fork(path.join(fixturesPath, 'suid.js'));
await once(child, 'spawn');
const [data] = await once(child, 'message');