Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 116487 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/test/internal/performance/results/DB_Results.java (-3 / +3 lines)
Lines 122-128 Link Here
122
	private final static String[] SUPPORTED_VMS =  { // Consider only
122
	private final static String[] SUPPORTED_VMS =  { // Consider only
123
		"sun" //$NON-NLS-1$
123
		"sun" //$NON-NLS-1$
124
	};
124
	};
125
	private final static String[] SUPPORTED_COMPONENTS = {
125
	public static String[] SUPPORTED_COMPONENTS = {
126
		"org.eclipse.ant", //$NON-NLS-1$
126
		"org.eclipse.ant", //$NON-NLS-1$
127
		"org.eclipse.compare", //$NON-NLS-1$
127
		"org.eclipse.compare", //$NON-NLS-1$
128
		"org.eclipse.core", //$NON-NLS-1$
128
		"org.eclipse.core", //$NON-NLS-1$
Lines 616-624 Link Here
616
			storeConfig(tokenizer.nextToken()); 	// 'eclipseperfwin2_R3.3'
616
			storeConfig(tokenizer.nextToken()); 	// 'eclipseperfwin2_R3.3'
617
			tokenizer.nextToken();												// 'jvm'
617
			tokenizer.nextToken();												// 'jvm'
618
			String vmName = tokenizer.nextToken();					// 'sun'
618
			String vmName = tokenizer.nextToken();					// 'sun'
619
			if (vmName.equals(SUPPORTED_VMS[0])) {
619
//			if (vmName.equals(SUPPORTED_VMS[0])) {
620
				storeBuildName(buildName);
620
				storeBuildName(buildName);
621
			}
621
//			}
622
		}
622
		}
623
		if (BUILDS_LENGTH == 0) {
623
		if (BUILDS_LENGTH == 0) {
624
			BUILDS = EMPTY_LIST;
624
			BUILDS = EMPTY_LIST;
(-)META-INF/MANIFEST.MF (-1 / +1 lines)
Lines 2-8 Link Here
2
Bundle-ManifestVersion: 2
2
Bundle-ManifestVersion: 2
3
Bundle-Name: %Plugin.name
3
Bundle-Name: %Plugin.name
4
Bundle-SymbolicName: org.eclipse.test.performance
4
Bundle-SymbolicName: org.eclipse.test.performance
5
Bundle-Version: 3.5.0.qualifier
5
Bundle-Version: 3.5.1.qualifier
6
Bundle-Activator: org.eclipse.test.internal.performance.PerformanceTestPlugin
6
Bundle-Activator: org.eclipse.test.internal.performance.PerformanceTestPlugin
7
Bundle-Vendor: %Plugin.providerName
7
Bundle-Vendor: %Plugin.providerName
8
Bundle-Localization: plugin
8
Bundle-Localization: plugin
(-)src/org/eclipse/test/performance/ui/GenerateResults.java (+22 lines)
Lines 329-334 Link Here
329
			buffer.append("	").append(arg).append(" = ").append(dir).append('\n');
329
			buffer.append("	").append(arg).append(" = ").append(dir).append('\n');
330
			continue;
330
			continue;
331
		}
331
		}
332
		if (arg.equals("-components")) {
333
			String components = args[i + 1];
334
			if (components.startsWith("-")) {
335
				System.out.println("Missing value for "+arg+" parameter");
336
				printUsage();
337
			}
338
			String[] names = components.split(",");
339
			Arrays.sort(names);
340
			int length = names.length;
341
			buffer.append("	").append(arg).append(" = ");
342
			for (int j=0; j<length; j++) {
343
				if (j>0) buffer.append(',');
344
				buffer.append(names[j]);
345
			}
346
			DB_Results.SUPPORTED_COMPONENTS = names;
347
			buffer.append('\n');
348
			i++;
349
			continue;
350
		}
332
		if (arg.equals("-config")) {
351
		if (arg.equals("-config")) {
333
			String configs = args[i + 1];
352
			String configs = args[i + 1];
334
			if (configs.startsWith("-")) {
353
			if (configs.startsWith("-")) {
Lines 762-767 Link Here
762
		"	Optional.  Build id prefix used in baseline test builds and
781
		"	Optional.  Build id prefix used in baseline test builds and
763
		"	A common prefix used for the value of the \"build\" key in the
782
		"	A common prefix used for the value of the \"build\" key in the
783
		"-components\n" +
784
		"	Comma separated list of component names for which to generate
785
764
		"-current\n" +
786
		"-current\n" +
765
		"	build id for which to generate results.  Compared to build id
787
		"	build id for which to generate results.  Compared to build id
766
		"	Same as value specified for the \"build\" key in the
788
		"	Same as value specified for the \"build\" key in the

Return to bug 116487