diff options
Diffstat (limited to 'devel/electron33/files/patch-electron_spec_api-utility-process-spec.ts')
-rw-r--r-- | devel/electron33/files/patch-electron_spec_api-utility-process-spec.ts | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/devel/electron33/files/patch-electron_spec_api-utility-process-spec.ts b/devel/electron33/files/patch-electron_spec_api-utility-process-spec.ts deleted file mode 100644 index 093d0536cdcb..000000000000 --- a/devel/electron33/files/patch-electron_spec_api-utility-process-spec.ts +++ /dev/null @@ -1,20 +0,0 @@ ---- electron/spec/api-utility-process-spec.ts.orig 2025-03-13 13:59:34 UTC -+++ electron/spec/api-utility-process-spec.ts -@@ -452,7 +452,7 @@ describe('utilityProcess module', () => { - expect(output).to.include(result); - }); - -- ifit(process.platform !== 'linux')('can access exposed main process modules from the utility process', async () => { -+ ifit(process.platform !== 'linux' && process.platform !== 'freebsd')('can access exposed main process modules from the utility process', async () => { - const message = 'Message from utility process'; - const child = utilityProcess.fork(path.join(fixturesPath, 'expose-main-process-module.js')); - await once(child, 'spawn'); -@@ -489,7 +489,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'); |