Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 146251 Details for
Bug 116487
create performance test harness
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
patch for performance tools
clipboard.txt (text/plain), 3.86 KB, created by
Steffen Pingel
on 2009-09-02 02:16:23 EDT
(
hide
)
Description:
patch for performance tools
Filename:
MIME Type:
Creator:
Steffen Pingel
Created:
2009-09-02 02:16:23 EDT
Size:
3.86 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.test.performance >Index: src/org/eclipse/test/internal/performance/results/DB_Results.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.test.performance/src/org/eclipse/test/internal/performance/results/DB_Results.java,v >retrieving revision 1.14 >diff -u -r1.14 DB_Results.java >--- src/org/eclipse/test/internal/performance/results/DB_Results.java 30 >Jul 2009 15:11:46 -0000 1.14 >+++ src/org/eclipse/test/internal/performance/results/DB_Results.java 30 >Aug 2009 02:39:11 -0000 >@@ -122,7 +122,7 @@ > private final static String[] SUPPORTED_VMS = { // Consider only >supported VMs a static data > "sun" //$NON-NLS-1$ > }; >- private final static String[] SUPPORTED_COMPONENTS = { >+ public static String[] SUPPORTED_COMPONENTS = { > "org.eclipse.ant", //$NON-NLS-1$ > "org.eclipse.compare", //$NON-NLS-1$ > "org.eclipse.core", //$NON-NLS-1$ >@@ -616,9 +616,9 @@ > storeConfig(tokenizer.nextToken()); // 'eclipseperfwin2_R3.3' > tokenizer.nextToken(); // 'jvm' > String vmName = tokenizer.nextToken(); // 'sun' >- if (vmName.equals(SUPPORTED_VMS[0])) { >+// if (vmName.equals(SUPPORTED_VMS[0])) { > storeBuildName(buildName); >- } >+// } > } > if (BUILDS_LENGTH == 0) { > BUILDS = EMPTY_LIST; >Index: META-INF/MANIFEST.MF >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.test.performance/META-INF/MANIFEST.MF,v >retrieving revision 1.11 >diff -u -r1.11 MANIFEST.MF >--- META-INF/MANIFEST.MF 14 Nov 2008 14:57:17 -0000 1.11 >+++ META-INF/MANIFEST.MF 30 Aug 2009 02:39:11 -0000 >@@ -2,7 +2,7 @@ > Bundle-ManifestVersion: 2 > Bundle-Name: %Plugin.name > Bundle-SymbolicName: org.eclipse.test.performance >-Bundle-Version: 3.5.0.qualifier >+Bundle-Version: 3.5.1.qualifier > Bundle-Activator: org.eclipse.test.internal.performance.PerformanceTestPlugin > Bundle-Vendor: %Plugin.providerName > Bundle-Localization: plugin >#P org.eclipse.test.performance.ui >Index: src/org/eclipse/test/performance/ui/GenerateResults.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/GenerateResults.java,v >retrieving revision 1.8 >diff -u -r1.8 GenerateResults.java >--- src/org/eclipse/test/performance/ui/GenerateResults.java 30 Jul >2009 15:11:43 -0000 1.8 >+++ src/org/eclipse/test/performance/ui/GenerateResults.java 30 Aug >2009 02:39:12 -0000 >@@ -329,6 +329,25 @@ > buffer.append(" ").append(arg).append(" = ").append(dir).append('\n'); > continue; > } >+ if (arg.equals("-components")) { >+ String components = args[i + 1]; >+ if (components.startsWith("-")) { >+ System.out.println("Missing value for "+arg+" parameter"); >+ printUsage(); >+ } >+ String[] names = components.split(","); >+ Arrays.sort(names); >+ int length = names.length; >+ buffer.append(" ").append(arg).append(" = "); >+ for (int j=0; j<length; j++) { >+ if (j>0) buffer.append(','); >+ buffer.append(names[j]); >+ } >+ DB_Results.SUPPORTED_COMPONENTS = names; >+ buffer.append('\n'); >+ i++; >+ continue; >+ } > if (arg.equals("-config")) { > String configs = args[i + 1]; > if (configs.startsWith("-")) { >@@ -762,6 +781,9 @@ > " Optional. Build id prefix used in baseline test builds and >reruns. Used to plot baseline historical data.\n" + > " A common prefix used for the value of the \"build\" key in the >eclipse.perf.config system property when rerunning baseline >tests.\n\n" + > >+ "-components\n" + >+ " Comma separated list of component names for which to generate >results.\n\n" + >+ > "-current\n" + > " build id for which to generate results. Compared to build id >specified in -baseline parameter above.\n" + > " Same as value specified for the \"build\" key in the >eclipse.perf.config system property. \n\n" + >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 116487
:
83034
|
83035
|
92635
|
92636
|
92637
|
92638
|
92639
|
92640
|
92641
|
92642
|
92643
|
92644
|
95149
|
95791
|
95792
|
96692
|
96728
|
97960
| 146251