mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
Do not run core render process tests on win32/ia32. They crash Atom in TextEditor specs - possible resource limitation.
This commit is contained in:
@@ -98,7 +98,7 @@ let testSuitesToRun = testSuitesForPlatform(process.platform)
|
||||
function testSuitesForPlatform(platform) {
|
||||
switch(platform) {
|
||||
case 'darwin': return [runCoreMainProcessTests, runCoreRenderProcessTests, runBenchmarkTests].concat(packageTestSuites)
|
||||
case 'win32': return [runCoreMainProcessTests, runCoreRenderProcessTests]
|
||||
case 'win32': return (process.arch === 'x64') ? [runCoreMainProcessTests, runCoreRenderProcessTests] : [runCoreMainProcessTests]
|
||||
case 'linux': return [runCoreMainProcessTests]
|
||||
default: return []
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user