mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 15:10:35 -04:00
Changelog: - https://github.com/electron/electron/releases/tag/v22.0.2 - https://github.com/electron/electron/releases/tag/v22.0.3 - https://github.com/electron/electron/releases/tag/v22.1.0 PR: 269194 Reported by: Yonas Yanfa <yonas.yanfa@gmail.com> Approved by: mikael (maintainer)
11 lines
654 B
TypeScript
11 lines
654 B
TypeScript
--- electron/spec/api-utility-process-spec.ts.orig 2023-01-24 16:58:16 UTC
|
|
+++ electron/spec/api-utility-process-spec.ts
|
|
@@ -308,7 +308,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 emittedOnce(child, 'spawn');
|
|
const [data] = await emittedOnce(child, 'message');
|