Do not run core render process tests on win32/ia32. They crash Atom in TextEditor specs - possible resource limitation.

This commit is contained in:
Damien Guard
2016-11-30 12:06:46 -08:00
parent 9595911ab7
commit 6aa46cf0f0

View File

@@ -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 []
}