mirror of
https://git.freebsd.org/ports.git
synced 2025-06-25 06:30:29 -04:00
Changelog: https://github.com/electron/electron/releases/tag/v29.4.3 Reported by: GitHub (watch releases) Security: 0e73964d-053a-481a-bf1c-202948d68484
11 lines
640 B
TypeScript
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');
|