diff options
Diffstat (limited to 'devel/electron36/files/patch-electron_spec_crash-spec.ts')
-rw-r--r-- | devel/electron36/files/patch-electron_spec_crash-spec.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/electron36/files/patch-electron_spec_crash-spec.ts b/devel/electron36/files/patch-electron_spec_crash-spec.ts new file mode 100644 index 000000000000..b4da5969eecd --- /dev/null +++ b/devel/electron36/files/patch-electron_spec_crash-spec.ts @@ -0,0 +1,11 @@ +--- electron/spec/crash-spec.ts.orig 2025-03-26 14:46:58 UTC ++++ electron/spec/crash-spec.ts +@@ -52,7 +52,7 @@ const shouldRunCase = (crashCase: string) => { + if (process.platform === 'win32') { + return process.arch !== 'ia32'; + } else { +- return (process.platform !== 'linux' || (process.arch !== 'arm64' && process.arch !== 'arm')); ++ return ((process.platform !== 'linux' && process.platform !== 'freebsd') || (process.arch !== 'arm64' && process.arch !== 'arm')); + } + } + default: { |