# HG changeset patch # User Ed Swartz # Date 1262712053 21600 # Node ID a5752f0943f6de66afcd10d8399bae41394e7a1b # Parent ba87a4b50604ae1996be25fd030596857761948f Improve performance of missing SDK test by only checking a few configurations diff -r ba87a4b50604 -r a5752f0943f6 project/com.nokia.carbide.cpp.project.core.tests/src/com/nokia/carbide/cpp/project/core/tests/MissingSdkTest.java --- a/project/com.nokia.carbide.cpp.project.core.tests/src/com/nokia/carbide/cpp/project/core/tests/MissingSdkTest.java Tue Jan 05 10:39:48 2010 -0600 +++ b/project/com.nokia.carbide.cpp.project.core.tests/src/com/nokia/carbide/cpp/project/core/tests/MissingSdkTest.java Tue Jan 05 11:20:53 2010 -0600 @@ -17,7 +17,6 @@ package com.nokia.carbide.cpp.project.core.tests; import java.io.*; -import java.net.URL; import java.util.ArrayList; import java.util.List; @@ -25,7 +24,6 @@ import org.eclipse.core.resources.IProject; import org.eclipse.core.runtime.*; -import org.osgi.framework.Bundle; import com.nokia.carbide.cdt.builder.CarbideBuilderPlugin; import com.nokia.carbide.cdt.builder.project.ICarbideBuildConfiguration; @@ -76,21 +74,25 @@ IProject project = null; ISymbianSDK lastSdkFound = null; + int lastSdkConfigurations = 0; try { project = ProjectCorePlugin.createProject("missingsdk", null); assertNotNull(project); - // put all configs among SDKs in devices.xml + // put up to 4 configs among each SDK in devices.xml (to improve speed with custkits) List allConfigs = new ArrayList(); for (ISymbianSDK sdk : sdkList) { - List projectConfigs = sdk.getFilteredBuildConfigurations(); - if (projectConfigs == null) + List sdkConfigs = sdk.getFilteredBuildConfigurations(); + if (sdkConfigs == null) + continue; + if (sdkConfigs.size() <= 0) continue; - if (projectConfigs.size() <= 0) - continue; - allConfigs.addAll(projectConfigs); + List subConfigs = sdkConfigs.subList(0, + Math.min(4, sdkConfigs.size())); + allConfigs.addAll(subConfigs); lastSdkFound = sdk; + lastSdkConfigurations = subConfigs.size(); } assertTrue(allConfigs.size() > 0); ProjectCorePlugin.postProjectCreatedActions(project, BLD_INF, allConfigs, new ArrayList(), "Debug MMP", null, new NullProgressMonitor()); @@ -111,8 +113,8 @@ badCount++; } } - // we only remove the first - assertTrue(badCount == lastSdkFound.getFilteredBuildConfigurations().size()); + // we only remove the last + assertTrue(badCount == lastSdkConfigurations); } finally { if (backupFile != null) { @@ -128,17 +130,6 @@ } - private File pluginRelativeFile(String file) throws IOException { - Bundle bundle = TestsPlugin.getDefault().getBundle(); - URL url = FileLocator.find(bundle, new Path("."), null); - if (url == null) - fail("could not make URL from bundle " + bundle + " and path " + file); - url = FileLocator.resolve(url); - TestCase.assertEquals("file", url.getProtocol()); - return new File(url.getPath(), file); - } - - public void copyFile(File in, File out) throws Exception { FileInputStream fis = new FileInputStream(in); FileOutputStream fos = new FileOutputStream(out);