Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Michel-Lemieux2002-03-21 20:59:13 +0000
committerJean Michel-Lemieux2002-03-21 20:59:13 +0000
commit4ce611cd848ab89d077ef1cb0112b6b48b8173bd (patch)
tree688a14ce9f77beabb3585a724fc85bf58b2101b3 /tests/org.eclipse.team.tests.cvs.core/benchmark
parent52cb4ad847398cba40042959d14147fcfc92d21d (diff)
downloadeclipse.platform.team-4ce611cd848ab89d077ef1cb0112b6b48b8173bd.tar.gz
eclipse.platform.team-4ce611cd848ab89d077ef1cb0112b6b48b8173bd.tar.xz
eclipse.platform.team-4ce611cd848ab89d077ef1cb0112b6b48b8173bd.zip
UI benchmark test scripts and results
Diffstat (limited to 'tests/org.eclipse.team.tests.cvs.core/benchmark')
-rw-r--r--tests/org.eclipse.team.tests.cvs.core/benchmark/readme.txt177
-rw-r--r--tests/org.eclipse.team.tests.cvs.core/benchmark/team2.0/2002_02_26.integration.all.xml6027
-rw-r--r--tests/org.eclipse.team.tests.cvs.core/benchmark/team2.0/2002_03_19.integration.all.xml4577
-rw-r--r--tests/org.eclipse.team.tests.cvs.core/benchmark/teamui_benchmark.bat37
-rw-r--r--tests/org.eclipse.team.tests.cvs.core/benchmark/vcm1.0/2002_02_26.integration.all.xml10960
-rw-r--r--tests/org.eclipse.team.tests.cvs.core/benchmark/vcmui_benchmark.bat43
6 files changed, 21821 insertions, 0 deletions
diff --git a/tests/org.eclipse.team.tests.cvs.core/benchmark/readme.txt b/tests/org.eclipse.team.tests.cvs.core/benchmark/readme.txt
new file mode 100644
index 000000000..039da2808
--- /dev/null
+++ b/tests/org.eclipse.team.tests.cvs.core/benchmark/readme.txt
@@ -0,0 +1,177 @@
+README Benchmark Tests
+======================
+
+This plugin provides automated benchmark tests and related support
+programs to locate regressions or improvements between different versions
+of the CVS Team Provider.
+
+For now, all of the tests are targeted towards typical UI workflows.
+This need not be the case. Should it be necessary, benchmark tests can
+easily be written for lower level core components as well.
+
+
+
+Deploying the Tests
+===================
+
+1. If you have a pre-built plugin available, then you do not need to rebuild
+ the org.eclipse.team.* plugins. Otherwise you must build these as usual,
+ but you do not need to create a JAR file. Having all of the compiled
+ classes in the 'bin' directory of each plugin is sufficient.
+
+2. Checkout the matching version of the org.eclipse.team.tests.cvs.core source
+ for your org.eclipse.team.* plugins. Ensure all dependencies have been
+ satisfied. Compile as usual.
+
+3. Checkout and compile org.eclipse.core.tests.harness.
+
+4. On the target machine, install a matching version of Eclipse in a dedicated
+ test directory. Also install a suitable JRE for the platform into that
+ directory (should always choose the same one).
+
+ If you are using Windows, then copy the "teamui_benchmark.bat" script to the
+ directory. For other platforms, you will need to cook up your own script.
+ You will probably want to change the definition of the "ROOT" variable and
+ other options before running the tests.
+
+ Copy the template "repository.properties" file to the test directory. Fill it in.
+
+ Replace the existing org.eclipse.team.* plugins in the eclipse/plugins
+ directory with the new ones. Also install org.eclipse.core.tests.harness
+ there. In the typical case, this just means copying or exporting the projects
+ directly from the workspace where you compiled them to the new location.
+
+ The test directory structure should look like this:
+ + mytestdirectory/
+ - teamui_benchmark.bat
+ - repository.properties
+ + jre/
+ ... a suitable java runtime ...
+ + eclipse/
+ - install/
+ - readme/
+ - splash/
+ - buildmanifest.properties
+ - startup.jar
+ + plugins/
+ - org.eclipse.core.tests.harness/
+ - org.eclipse.team.core/
+ - org.eclipse.team.ui/
+ - org.eclipse.team.cvs.core/
+ - org.eclipse.team.cvs.ui/
+ - org.eclipse.team.tests.cvs.core/
+ - org.junit/
+ ... and all of the other required Eclipse plugins ...
+
+5. From a command shell, run the script. Grab a coffee.
+
+
+
+Running or Debugging the Tests from within Eclipse
+==================================================
+
+1. Checkout and compile the necessary projects (see above).
+
+2. Using the PDE launcher, run the "org.eclipse.team.tests.cvs.core.harness"
+ application with the following arguments:
+
+ VM Arguments:
+ -Declipse.cvs.properties=<location of your repository.properties file>
+
+ Program arguments:
+ -test <suite> : id of suite to run (must be plugged into extension point)
+ [see plugin.xml file for the list of available tests]
+ -log <file> : specify a file for logging
+ -nolog : do not write a log file
+ -repeat <n> : number of iterations to run
+ -ignorefirst : ignore (do not record) results from first iteration
+ -purge : purge all projects from the workspace before each iteration
+ <anything else> : passed verbatim to the org.eclipse.ui.workbench application
+
+
+
+Inspecting the Output
+=====================
+
+1. Checkout and compile the org.eclipse.team.tests.cvs.core project.
+
+2. Note that the log formatting tools require org.apache.xerces to be on the
+ classpath when they are run. They do not require any other Eclipse
+ components, however.
+
+3. Run any of the following Java programs:
+
+ org.eclipse.team.tests.ccvs.ui.logformatter.PrintAverageMain
+ ------------------------------------------------------------
+
+ Synopsis:
+ Prints the average of the output of all runs contained in a particular
+ XML log file. It is not possible to average runs in multiple log files
+ at once without merging the files together on disk. [Strip the closing
+ tag of the first file, and the opening tag of the second file, then
+ append the second file to the first]
+
+ Program arguments:
+ <log> : the path of the log file to print
+
+
+ org.eclipse.team.tests.ccvs.ui.logformatter.PrintRawMain
+ --------------------------------------------------------
+
+ Synopsis:
+ Prints the raw output of each individual run contained in a particular
+ XML log file without summarizing the data in any way.
+
+ Program arguments:
+ <log> : the path of the log file to print
+
+
+ org.eclipse.team.tests.ccvs.ui.logformatter.PrintDiffMain
+ ---------------------------------------------------------
+
+ Synopsis:
+ Prints the difference between the average of all runs contained
+ in one XML log file (the newer one) and the average of all runs
+ contained in another XML log file (the older one). This makes it
+ possible to locate regressions or improvements between versions.
+
+ Program arguments:
+ <newer log> : the path of the "newer" log file
+ <older log> : the path of the "older" log file
+ -t <thresh> : specify the minimum non-negligible absolute difference in ms
+ -i : ignore negligible changes in results [filter them out]
+
+
+
+What is Being Logged
+====================
+
+At the present date the following information is logged for each test run:
+ - current time
+ - current SDK build number
+ - for JUnit test cases:
+ - test name
+ - fully qualified class name
+ - for groups of benchmark tasks:
+ - name
+ - for benchmark tasks:
+ - name
+ - elapsed time
+ - for exceptions and errors:
+ - type of error (warning, error, failure)
+ - error message
+ - stack trace, if applicable
+ - printout of IStatus contents, if applicable
+
+
+
+NOTES
+=====
+
+Exceptions and errors are not reported through the log formatting tools yet
+since it is difficult to determine automatically which benchmark tasks are
+affected (directly or indirectly) by the error. For this reason, you should
+MANUALLY INSPECT the generated XML log files and search for elements with
+the name "abort". Since running the test cases is time consuming, it
+may be better to trim out any affected cases from the log rather than to run
+the whole suite over once again.
diff --git a/tests/org.eclipse.team.tests.cvs.core/benchmark/team2.0/2002_02_26.integration.all.xml b/tests/org.eclipse.team.tests.cvs.core/benchmark/team2.0/2002_02_26.integration.all.xml
new file mode 100644
index 000000000..f5e8da229
--- /dev/null
+++ b/tests/org.eclipse.team.tests.cvs.core/benchmark/team2.0/2002_02_26.integration.all.xml
@@ -0,0 +1,6027 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<log timestamp="01/Mar/2002 15:35:24" sdkbuild="20020226">
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16221"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="61422"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5367"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="18236"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="10725"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="18825"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="9834"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="18957"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6039"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="23454"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="8001"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="25236"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5297"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5718"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4597"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1833"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5077"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1973"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5147"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1963"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4877"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2854"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4712"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2253"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4766"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1512"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4947"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4687"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="761"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4987"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="741"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4877"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1142"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4577"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="741"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4286"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1662"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="691"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1282"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1182"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1722"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1132"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1012"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7174"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="360"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1903"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="260"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1312"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3194"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1412"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1112"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1972"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2013"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1232"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1242"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="400"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="832"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="901"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1121"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="4697"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3605"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="35922"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="7361"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5437"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3005"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5639"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2323"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="12849"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="611"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6369"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="440"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5348"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4266"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5167"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2404"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6339"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="6088"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5438"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="3742"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="2603"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4797"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4527"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="5698"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="19189"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16654"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="267841"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="54836"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="31911"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9243"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27680"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="8152"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="42611"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2123"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26728"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1683"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27019"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="11853"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26783"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="9934"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="28531"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="41088"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26799"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="24823"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="13650"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="31375"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="28209"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="32381"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16013"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="61878"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5441"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="18217"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="10933"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="18867"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="9604"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="19047"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6008"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="23544"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7771"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="25477"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5298"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5638"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4686"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1823"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5178"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2003"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5208"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1973"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4987"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2754"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4697"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2253"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4667"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1472"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4717"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="611"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4486"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="791"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4857"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="752"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5067"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1141"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4577"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4276"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1432"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="731"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1242"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1182"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1873"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1071"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="952"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7450"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="341"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2003"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="260"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1432"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3284"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1282"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1092"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1695"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1983"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1252"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1241"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="501"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="801"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="922"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1122"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="4626"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3666"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="36091"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="7542"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5468"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3105"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5688"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1943"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="11466"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6239"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5387"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4166"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5378"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2544"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6259"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="6209"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5428"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="3765"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="2504"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4787"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4556"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="5718"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="18807"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16895"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="275863"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="54629"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="30604"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9092"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26327"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="8112"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="47008"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2042"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26899"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1662"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27009"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="11814"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26508"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="10104"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="28064"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="41940"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26625"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="24546"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="13439"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="31708"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="28331"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="32177"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16213"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="61383"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5518"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="18107"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="10926"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="18717"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="9363"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="19025"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6139"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="23455"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7761"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="25056"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5624"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5708"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4487"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1832"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5297"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1953"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4967"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1953"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4607"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2854"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4596"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2264"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4576"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1402"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5028"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="550"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4577"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="781"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5027"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4968"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1141"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4535"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4186"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1432"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="761"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1212"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1222"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1883"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1259"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="942"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7491"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="410"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1803"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="260"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1412"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3104"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1292"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1222"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1862"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2013"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1392"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1232"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="441"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="841"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="921"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1112"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="4686"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3636"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="36032"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="7451"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5358"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2954"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5588"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2073"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="12108"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="611"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6279"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="440"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5277"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4156"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5278"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2454"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6520"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5988"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5438"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="4056"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="2433"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4807"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4496"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="5688"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="18727"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16604"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="277001"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="54932"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="29342"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9364"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26524"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="8082"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="42573"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2063"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26832"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1682"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27062"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="12538"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27009"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="9874"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="28388"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="41239"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26940"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="25086"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="13510"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="31443"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="28330"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="32858"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16401"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="61600"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5167"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="18236"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="10795"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="18707"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="9183"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="19098"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5979"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="23534"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7751"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="25493"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5327"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5688"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4617"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1803"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5295"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2063"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5638"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1963"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4797"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2834"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4727"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2263"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4817"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1392"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4637"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4446"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="791"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5128"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="681"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4877"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1041"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4476"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="651"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4256"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1412"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="711"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1171"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1102"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2013"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1021"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="992"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7651"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="350"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1913"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="260"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1422"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3084"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1262"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1152"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1862"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1943"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1202"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1282"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="430"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="811"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="861"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1112"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="4646"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3725"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="35763"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="7691"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5307"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3125"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5568"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1903"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16341"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6078"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5317"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4357"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6078"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2414"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6609"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="6069"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5388"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="3765"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="2391"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4797"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4816"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="5788"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="19347"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16614"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="276274"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="55511"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="29107"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9113"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26418"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="8141"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="41845"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2042"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27336"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1662"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27079"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="11817"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27215"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="10054"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="28199"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="41084"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27169"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="24648"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="13970"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="31746"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="28422"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="32233"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="15824"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="61333"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5458"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="18226"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="11396"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="19010"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="9383"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="19010"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6489"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="23353"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7835"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="25056"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5228"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5688"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4637"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1822"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5177"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2083"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5147"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2013"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4637"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2754"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4768"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2263"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4648"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1402"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4847"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="611"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4557"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="761"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5017"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="711"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4872"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1152"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4586"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="721"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4226"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1592"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="701"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1172"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1142"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1863"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1251"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="972"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7751"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1942"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="271"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1332"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3055"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1442"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1191"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1853"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2033"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1261"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1423"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="410"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="821"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="941"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1092"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="4577"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3615"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="35531"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="7640"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5338"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3044"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5559"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2133"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="12819"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="620"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6079"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="891"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5308"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4156"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5468"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2363"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6389"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5919"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5297"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="3845"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="2483"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4797"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4727"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="5778"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="18735"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16794"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="274659"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="54602"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="29688"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9153"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26368"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="8092"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="46032"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2043"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27008"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1662"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26788"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="11907"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26514"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="9844"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="28020"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="41551"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26618"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="24454"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="13544"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="31125"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="28398"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="32581"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="15971"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="61589"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5498"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="18216"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="11157"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="18787"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="9724"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="18967"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5998"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="23279"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7771"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="25136"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5568"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5678"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4637"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1833"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5097"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2183"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5175"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1963"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4897"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2844"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4607"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2233"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4887"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1442"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4586"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4587"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="761"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4767"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="731"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4877"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1041"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4577"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4216"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1432"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="711"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1252"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="651"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1142"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1843"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1091"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="922"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7801"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="370"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2023"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="271"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1432"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2975"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1291"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1122"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1782"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2276"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1371"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1242"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="471"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="831"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="902"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1092"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="4577"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3687"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="36031"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="7405"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5428"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3055"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5728"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2113"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="12378"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6399"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="450"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5248"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4166"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5377"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2304"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6500"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="6108"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5508"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="3816"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="2684"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4787"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="5087"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="5679"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="18897"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16554"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="273155"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="54258"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="29472"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9153"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26378"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="8176"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="43873"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2063"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27182"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1672"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27129"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="11897"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26973"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="10132"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="28561"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="40892"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26855"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="24675"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="14221"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="31199"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="28291"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="32907"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16294"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="61574"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5168"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="18130"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="11196"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="18746"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="9444"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="18997"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6138"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="23564"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7811"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="25417"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5217"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5719"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4647"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1813"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5207"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1993"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4927"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1963"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5398"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2854"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4607"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2243"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4697"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1392"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4777"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4586"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="761"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4867"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="661"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5158"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1051"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4467"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="741"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4346"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1442"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="701"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1072"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1162"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1892"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1032"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="991"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7963"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="410"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1793"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="270"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1332"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3314"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1422"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1192"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1632"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2023"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1292"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1242"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="471"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="831"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="901"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1081"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="4686"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3735"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="35777"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="7260"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5467"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2975"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5898"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1913"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="13900"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6489"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="441"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5438"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4176"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5358"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2554"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6239"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="6009"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5408"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="3826"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="2663"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4807"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4536"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="5698"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="19188"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16584"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="271816"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="54534"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="29112"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9273"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26477"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="8150"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="43313"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2083"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26698"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1663"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26799"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="12106"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26528"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="9794"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="28387"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="41280"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26888"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="24869"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="13449"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="30916"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="28311"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="32407"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16163"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="61373"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5278"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="18203"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="11326"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="18657"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="10405"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="19054"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6089"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="23474"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7691"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="25396"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5207"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5628"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4597"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1833"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5027"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2093"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5127"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1963"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5098"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2864"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4696"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2234"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4707"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1392"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4746"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4517"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="751"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4967"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="751"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4947"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1132"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4576"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4246"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1332"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="720"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1202"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1152"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1892"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="922"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="991"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7942"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="350"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1923"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="270"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1422"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3188"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1422"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1102"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1672"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2023"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1082"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1241"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="481"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="921"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="901"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1112"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="4547"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3645"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="36104"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="7330"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5498"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3064"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5588"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1973"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="12648"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6077"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="450"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5378"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4176"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5357"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2334"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6720"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5969"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5387"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="3776"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="2423"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4797"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4877"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="5759"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="18817"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16980"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="275423"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="54065"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="30004"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9331"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26668"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="8112"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="42638"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2083"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="28111"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1662"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27177"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="11715"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26428"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="10024"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="28133"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="41498"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26658"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="24546"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="13654"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="31576"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="28466"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="32437"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16299"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="61604"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5258"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="18271"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="10935"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="18912"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="9063"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="19117"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6169"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="23393"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7626"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="25427"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5318"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5688"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4727"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1842"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5358"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1963"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4867"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1963"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4797"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2844"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4791"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2273"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4628"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1402"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4667"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4486"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="761"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4687"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="721"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5678"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1142"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4476"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4426"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1563"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="681"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1201"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1172"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1863"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1051"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="982"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="9363"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="441"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1953"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="280"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1331"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3065"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1492"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1092"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1813"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2333"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1252"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1262"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="481"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="831"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="891"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1071"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="4666"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3766"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="35972"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="7410"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5398"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3044"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5799"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1963"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="12448"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6340"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="450"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5348"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4176"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5478"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2313"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6469"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="6019"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5397"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="4523"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="3155"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="5698"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="5048"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="6019"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="18735"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16634"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="274940"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="54349"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="30464"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="10043"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26187"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="8392"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="42380"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2073"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27248"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1713"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27420"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="11927"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26706"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="9874"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="28531"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="42284"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26869"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="24629"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="13470"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="31755"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="28401"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="32336"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16134"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="61968"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5297"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="18257"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="11113"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="18747"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="9593"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="19108"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6109"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="23866"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7744"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="25316"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5548"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5719"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4746"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1760"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5188"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2093"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5137"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1993"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5147"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2864"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4607"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2253"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4647"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1392"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4666"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="611"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4907"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="701"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4887"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="731"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4867"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1142"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4577"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="741"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4266"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1482"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="691"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1072"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="712"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1092"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2193"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1191"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1022"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="11373"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="411"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1932"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="261"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1242"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2974"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1282"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1132"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1582"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2023"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1502"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1232"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="460"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="832"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1181"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1122"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="4587"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3685"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="35682"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="7311"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5328"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2864"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5999"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2012"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="14141"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6629"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5307"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3972"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5197"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2364"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6570"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="6139"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5588"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="3775"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="2704"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4837"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4547"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="5826"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="19205"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16634"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="275210"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="54323"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="29562"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9133"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26498"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="8071"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="43133"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2083"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26927"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1663"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27510"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="12246"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26628"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="9864"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="28117"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="41109"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27043"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="24926"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="13489"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="31511"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="28396"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="32487"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16284"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="61600"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5278"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="18296"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="11186"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="18777"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="10405"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="18954"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5969"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="23364"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7691"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="25752"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5267"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5678"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4867"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1823"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5226"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2083"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4847"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2283"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4777"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2844"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4606"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2264"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4607"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1492"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4767"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="580"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4507"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="751"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5006"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="721"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4887"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1032"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4476"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4306"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1342"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="711"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1172"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1142"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1872"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1192"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1021"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7751"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="350"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1813"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="290"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1422"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3485"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1422"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1202"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1583"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1912"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1142"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1242"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="400"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="821"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="911"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1122"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="4617"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3655"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="36547"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="7441"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5608"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3045"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5507"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2173"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16604"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="610"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6209"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5257"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4096"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5638"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2334"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6560"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5948"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5388"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="3755"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="2424"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4787"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4857"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="5748"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="19478"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16581"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="276868"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="54378"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="29308"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9253"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26478"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="8122"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="46595"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2123"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27310"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1672"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27331"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="11867"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26718"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="9769"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="28530"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="41232"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26918"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="24715"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="13770"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="31395"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="28608"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="32304"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16373"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="62119"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5458"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="18517"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="10755"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="18616"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="9664"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="19043"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5989"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="23598"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="8121"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="25257"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5438"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5588"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4546"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1803"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5198"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1972"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5449"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1973"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4797"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2854"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4707"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2263"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4687"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1382"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4737"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4576"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="741"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4890"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="721"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5277"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1042"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4577"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="630"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4296"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1482"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="771"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1082"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1132"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1852"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1202"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1032"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="10284"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="411"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1923"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="260"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1372"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2974"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1392"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1101"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1673"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2014"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1302"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1252"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="461"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="831"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="921"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1422"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="4827"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3606"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="35641"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="7275"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5738"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3005"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5648"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2003"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="12237"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6429"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="471"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5187"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4166"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5388"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2313"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6654"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="6118"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5809"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="3875"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="2414"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4817"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4586"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="5779"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="19148"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="16574"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="271635"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="54669"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="29392"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9124"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26598"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="8231"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="45686"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2103"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26959"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1672"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27720"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="11807"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="26733"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="9814"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="28692"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="41231"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="27069"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="24841"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="14647"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="31704"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="28632"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="32818"/>
+ </task>
+ </group>
+ </group>
+ </case>
+</log>
diff --git a/tests/org.eclipse.team.tests.cvs.core/benchmark/team2.0/2002_03_19.integration.all.xml b/tests/org.eclipse.team.tests.cvs.core/benchmark/team2.0/2002_03_19.integration.all.xml
new file mode 100644
index 000000000..d783a1f6d
--- /dev/null
+++ b/tests/org.eclipse.team.tests.cvs.core/benchmark/team2.0/2002_03_19.integration.all.xml
@@ -0,0 +1,4577 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<log timestamp="20/Mar/2002 14:30:14" sdkbuild="20020319">
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2674"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="15162"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2193"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="4426"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4817"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4967"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3875"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="5361"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1923"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9303"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1793"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="7831"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1483"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1882"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1623"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="881"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1452"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="731"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1683"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="681"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1703"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1362"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1241"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="992"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1422"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="831"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1672"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1222"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="290"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1423"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="390"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1663"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="520"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1291"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="321"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="701"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1302"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="611"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1222"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1041"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2313"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1201"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1012"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="9444"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="450"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1572"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="350"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="941"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2173"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1112"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="831"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1232"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2694"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="881"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1312"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="461"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1032"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1422"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1852"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="961"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="32442"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="10405"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1552"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2834"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1693"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1382"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7561"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2524"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="340"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1762"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2384"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1642"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1002"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2114"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2904"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1492"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1683"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="4146"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1562"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="2073"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4436"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="3525"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2301"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="207531"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="72365"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3666"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3224"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4135"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1202"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="20872"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="421"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4086"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="351"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4096"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2844"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3986"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1081"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4687"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4306"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4387"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2543"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="26942"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="11076"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="10675"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="14451"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2894"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="14922"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1963"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="4476"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4697"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4706"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3666"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="5714"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1783"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9473"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1842"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="7521"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1613"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1882"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1301"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="751"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1452"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="782"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1742"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="841"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1532"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1322"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1292"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="931"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1532"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="801"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1622"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1132"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1001"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1442"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="360"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1753"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="521"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1292"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="310"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="591"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1232"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="611"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1132"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1031"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2314"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1412"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1031"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6169"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="480"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1362"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="361"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1121"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2526"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1152"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="911"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1262"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2734"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="861"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1402"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="440"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="441"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1041"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1502"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1782"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="932"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="32715"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="10425"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1572"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2744"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1592"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1222"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7931"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="491"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2503"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="401"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1963"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2393"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1543"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="981"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2085"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2904"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1493"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1692"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="4206"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1522"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="2023"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4477"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="3936"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2207"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="217383"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="72154"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3605"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3245"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4216"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1152"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="22829"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="431"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4046"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="330"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3945"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2845"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4176"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1051"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4747"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4176"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3946"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2513"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="26406"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="11908"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="10646"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="14140"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2754"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="14862"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2083"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="4256"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5147"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4708"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3795"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="5057"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1922"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9544"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1893"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="7881"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1572"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1903"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1703"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="831"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1542"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="721"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1533"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="620"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1542"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1322"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1282"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1011"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1542"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="792"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1522"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1232"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="370"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1533"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="380"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1553"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="510"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1112"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="421"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="561"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1312"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="611"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1322"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1122"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2633"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1432"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1071"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6465"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="500"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1352"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="350"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="891"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2093"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1142"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="791"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1252"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2674"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="781"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1712"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="391"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="441"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1052"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1522"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1743"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1011"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="32568"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="10375"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1522"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2744"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1603"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1181"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7921"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="491"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2844"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="371"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1923"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2350"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1552"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="961"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2264"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2844"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1572"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1703"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="4186"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1482"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="2003"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4827"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="3639"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2243"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="218974"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="72604"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3835"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3415"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4218"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1141"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="21791"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="461"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3956"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="340"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4136"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2794"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4035"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1212"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4637"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4266"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3936"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2583"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="26569"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="12047"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="10655"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="14561"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2734"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="15001"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1952"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="4667"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5348"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4797"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4126"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="5127"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2033"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9694"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1833"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="7581"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1632"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2033"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1462"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="841"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1552"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="691"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1532"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="711"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1532"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1452"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1260"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="961"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1482"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="821"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1493"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="540"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1131"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="351"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1432"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="370"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1663"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="510"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1102"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="320"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="591"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1322"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="611"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1122"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1042"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2323"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1292"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1042"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="8072"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="460"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1483"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="350"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="921"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2233"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1142"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="841"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1312"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2744"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="932"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1452"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="420"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="441"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1011"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1482"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1857"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="881"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="32217"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="10675"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1602"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2724"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1723"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1161"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="8519"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2423"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="371"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1772"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2303"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1512"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="951"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2333"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2854"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1633"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1732"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="4116"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1532"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="2043"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4477"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="3295"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2233"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="216834"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="74733"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3615"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3595"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4086"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1212"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="20910"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="421"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3996"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="340"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3895"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2794"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4136"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1070"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4687"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4246"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4457"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2583"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="27639"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="10986"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="10670"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="14561"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2734"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="15342"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1862"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="4327"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4497"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4717"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4546"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="5138"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2263"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9644"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1963"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="7776"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1643"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1802"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1382"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="772"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1643"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="691"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1612"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="651"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1732"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1382"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1242"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="981"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1452"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="701"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1522"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="972"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="350"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1422"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="390"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1663"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="490"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1091"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="331"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="731"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1322"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="581"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1222"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1041"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2324"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1412"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="971"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7210"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="431"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1592"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="340"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1101"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2144"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1181"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="822"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1282"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2703"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="711"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1692"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="421"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="440"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="992"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1422"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1603"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1021"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="32727"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="10355"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1497"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2674"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1753"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1202"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7851"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="471"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2724"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="391"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1713"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2343"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1663"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="921"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2283"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3105"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1592"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1663"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="4156"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1562"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="2033"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4396"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="3255"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2143"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="216621"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="72830"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3786"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3394"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4065"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1102"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="22031"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="461"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4086"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="320"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4053"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2824"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3986"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1532"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4286"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4166"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3725"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2624"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="27980"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="10964"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="11216"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="14601"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2774"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="15325"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1792"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="4246"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4757"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5237"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3525"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="4867"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1912"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9744"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2022"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="7712"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1582"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2033"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1462"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="841"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1372"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="691"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1803"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1492"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1382"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1242"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="941"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1492"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="681"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1723"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="981"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="341"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1302"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="290"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1543"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="510"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1201"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="411"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="681"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1302"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="651"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1182"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1081"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2363"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1161"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="982"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6940"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="491"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1352"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="370"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1091"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2183"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1071"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="911"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1242"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3124"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="735"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1402"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="431"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="431"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1082"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1452"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1742"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="911"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="32577"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="10385"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1592"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2694"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1632"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1172"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="8242"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2854"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="351"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1663"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2443"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1663"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="961"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2373"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2915"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1672"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1673"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="4176"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1505"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="2013"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4476"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="3154"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2133"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="218973"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="73744"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3745"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3415"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4446"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1162"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="22942"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="450"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4075"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="331"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3956"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2874"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4647"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1102"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4556"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4226"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3876"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2524"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="28050"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="11036"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="10905"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="14733"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2604"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="15522"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2133"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="4166"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4927"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5087"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3465"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="4920"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1953"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9684"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1752"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="7581"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1522"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1803"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1703"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="851"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1432"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="711"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1703"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="630"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1462"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1322"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1302"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1422"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1452"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="691"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1532"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1162"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="341"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1502"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="371"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1592"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="481"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1101"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="311"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="581"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1262"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="651"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1122"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="611"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1051"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2334"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1392"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="991"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6569"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="431"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1322"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="320"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1061"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2184"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1121"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="852"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1272"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2714"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1062"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1342"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="431"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="440"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1011"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1432"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1522"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="991"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="32618"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="10425"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1482"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2604"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2263"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1162"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7812"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="440"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2574"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="330"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1783"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2313"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1593"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="961"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2122"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2804"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1602"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1672"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="4096"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1562"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1983"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4366"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="3014"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2201"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="221419"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="77876"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3786"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3775"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4466"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1271"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="20630"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="410"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4026"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="321"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4086"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2854"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4367"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1151"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4727"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4186"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4254"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2554"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="28561"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="11056"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="11366"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="14371"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2724"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="14981"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2073"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="4226"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5257"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4807"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4166"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="5829"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2273"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="10025"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1883"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="7801"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1643"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1802"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1602"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="841"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1342"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="771"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1642"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1412"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1522"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1292"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="951"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1532"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="822"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1407"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="510"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1111"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="291"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1442"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="370"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1572"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="501"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1091"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="311"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="731"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1222"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="601"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1232"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1041"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2314"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1432"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="981"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="6719"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="411"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1322"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="310"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1101"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2624"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1102"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="811"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1242"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2744"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="811"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1362"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="441"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1042"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1412"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1678"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="982"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="32917"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="10345"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1542"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3255"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1793"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1191"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="13009"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="461"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2423"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="351"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1712"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2394"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1712"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="942"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2313"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2744"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1552"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1683"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="4647"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1522"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1993"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4286"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="3736"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3795"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="220088"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="74941"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4266"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3124"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4237"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1141"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="21802"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="481"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4166"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="330"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3866"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2834"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4397"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1101"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4447"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4176"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3945"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2704"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="29052"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="11037"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="11217"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="14561"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2584"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="15588"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2002"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="4186"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4827"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5177"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3776"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="5227"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1963"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9829"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1812"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="7481"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1642"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1892"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1583"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="851"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1562"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="681"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3335"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="681"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1483"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1311"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1201"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="932"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1462"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="791"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1633"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="530"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1221"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="301"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1512"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="301"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1532"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1292"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="320"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1342"/>
+ </task>
+ <task name="Nothing to Commit">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1231"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="630"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="1122"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1042"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2303"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1422"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="992"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7861"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1332"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="310"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1091"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2123"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1061"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="851"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1270"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2774"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="901"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1402"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="390"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="431"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1602"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1472"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="1732"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="981"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="32609"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="10367"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1462"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2724"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1613"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1171"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="7921"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2353"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="331"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2283"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2293"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1522"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="942"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2273"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="2784"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1622"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1703"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="4133"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1552"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="1983"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="4296"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="set sharing, pop up sync viewer">
+ <result elapsed="3575"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2143"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="222856"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="74203"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3635"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3795"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4176"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1202"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="23106"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="410"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4176"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="331"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4036"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="3375"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4266"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="1162"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="4466"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="4216"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3955"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="2524"/>
+ </task>
+ </group>
+ </group>
+ <group name="tag project">
+ <task name="CVS Tag action">
+ <result elapsed="28879"/>
+ </task>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="11617"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="10605"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Remote action">
+ <result elapsed="14991"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2704"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="14631"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="2053"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="4226"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="5498"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="5065"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="3465"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="5438"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1943"/>
+ </task>
+ <task name="Sync View Commit action">
+ <result elapsed="9394"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Repository action">
+ <result elapsed="1842"/>
+ </task>
+ <task name="Sync View Update action">
+ <result elapsed="7431"/>
+ </task>
+ </group>
+ </group>
+ </case>
+</log>
diff --git a/tests/org.eclipse.team.tests.cvs.core/benchmark/teamui_benchmark.bat b/tests/org.eclipse.team.tests.cvs.core/benchmark/teamui_benchmark.bat
new file mode 100644
index 000000000..6667430fa
--- /dev/null
+++ b/tests/org.eclipse.team.tests.cvs.core/benchmark/teamui_benchmark.bat
@@ -0,0 +1,37 @@
+@echo off
+rem Team UI benchmark script
+rem Expects the following plugins to be installed:
+rem org.eclipse.core.tests.harness
+rem org.eclipse.team.core
+rem org.eclipse.team.cvs.core
+rem org.eclipse.team.cvs.ui
+rem org.eclipse.team.tests.cvs.core
+rem org.eclipse.team.ui
+rem org.junit
+
+set ROOT=D:\PerformanceTesting
+
+set ECLIPSE=%ROOT%\eclipse
+set REPOSITORY_PROPERTIES=%ROOT%\repository.properties
+set TEST=cvsui.benchmark.all
+set LOG=%ROOT%\%TEST%.xml
+set REPEAT=6
+set IGNOREFIRST=-ignorefirst
+
+set PLUGINS=%ECLIPSE%\plugins
+set WORKSPACE=%ECLIPSE%\workspace
+set JRE=%ROOT%\jre
+set JAVA=%JRE%\bin\java.exe
+set HARNESS=org.eclipse.team.tests.cvs.core.harness
+
+set VMARGS=-Declipse.cvs.properties=%REPOSITORY_PROPERTIES%
+set PROGARGS=-dev bin -application %HARNESS% -test %TEST% -log %LOG% -purge -repeat %REPEAT% %IGNOREFIRST%
+
+pushd %ECLIPSE%
+echo Purging the workspace: %WORKSPACE%
+del /S /F /Q %WORKSPACE% >NUL:
+@echo on
+@echo Running Team UI benchmark test
+%JAVA% -cp startup.jar %VMARGS% org.eclipse.core.launcher.UIMain %PROGARGS%
+@echo off
+popd
diff --git a/tests/org.eclipse.team.tests.cvs.core/benchmark/vcm1.0/2002_02_26.integration.all.xml b/tests/org.eclipse.team.tests.cvs.core/benchmark/vcm1.0/2002_02_26.integration.all.xml
new file mode 100644
index 000000000..922e0ef30
--- /dev/null
+++ b/tests/org.eclipse.team.tests.cvs.core/benchmark/vcm1.0/2002_02_26.integration.all.xml
@@ -0,0 +1,10960 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<log timestamp="01/Mar/2002 19:54:44" sdkbuild="20020226">
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1873"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1873"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1802"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1512"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1963"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1021"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1792"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1012"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2083"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1081"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1612"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1162"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="701"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1592"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="381"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2694"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="550"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2253"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="351"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1962"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="661"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1530"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="281"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1041"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1092"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="350"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1121"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1632"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="471"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1452"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1161"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="291"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="611"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="841"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="691"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="471"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="871"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="862"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="822"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1593"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1262"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="491"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1012"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1081"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="921"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="691"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="751"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1290"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="611"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="160"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="721"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1221"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="892"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="2543"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="2133"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3726"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1161"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4356"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1432"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="611"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3284"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="431"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2274"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1151"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2113"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="661"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1942"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="661"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1592"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="661"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="721"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1162"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1863"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1512"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1812"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1592"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1422"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2063"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1072"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2103"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="901"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2042"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1042"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1483"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="520"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1182"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="771"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1442"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="390"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2173"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2443"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="341"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1983"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1251"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="291"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1041"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1122"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="371"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1162"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="600"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1502"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="481"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1402"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="501"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1067"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="281"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="711"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="822"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="711"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="570"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="481"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="921"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="881"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1062"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1312"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1082"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="731"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="721"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1172"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1001"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="681"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="701"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="921"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="611"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="170"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="731"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="731"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1111"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="801"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="2534"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="2203"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3785"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="952"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3706"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="630"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1352"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3134"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="401"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2043"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1152"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2173"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1623"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="821"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1422"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="701"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="791"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="981"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2033"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1553"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1912"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1953"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1482"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1683"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1041"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1893"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="931"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2273"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1022"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1553"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="540"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1011"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1032"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1483"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="410"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2734"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2073"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="371"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1792"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1432"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="300"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="962"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="681"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1202"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="330"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1111"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1593"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="500"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1202"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="510"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1231"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="291"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="570"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="861"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="661"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="450"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1342"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="962"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="842"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="630"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1693"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1132"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="471"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="861"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1032"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="922"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="861"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="792"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="852"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="530"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="321"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="611"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="681"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1111"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="751"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="2364"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="2114"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3495"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1101"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3545"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1462"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3205"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="410"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1983"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1191"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2504"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1703"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="811"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1432"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="651"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1052"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2113"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1422"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1793"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1643"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1512"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1992"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1052"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2003"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="881"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2273"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1092"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1563"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="530"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1149"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1252"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="400"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2273"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1902"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="381"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1843"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1422"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="301"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1362"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1202"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="350"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1161"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1612"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="471"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1402"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="491"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1122"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="330"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="651"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="851"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="691"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="538"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="430"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="922"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1011"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="891"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1442"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1161"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="481"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="982"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1061"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="821"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="651"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="801"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1001"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="190"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="701"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1151"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="801"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="2414"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="2108"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3345"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1011"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3765"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="681"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1312"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2944"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="400"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2376"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1142"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2314"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="701"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1963"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="932"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1312"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="721"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="781"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1141"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1712"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1792"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1382"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1782"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1472"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1953"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1011"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1753"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1001"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2093"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1122"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1623"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="540"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1072"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1472"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="421"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2163"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="681"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2133"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="371"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1952"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="681"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1292"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="300"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1041"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="501"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1012"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="360"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1146"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1472"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="441"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1302"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1272"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="381"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="671"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="941"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="651"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="440"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="912"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1021"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="771"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="831"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1613"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="600"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1492"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="812"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1021"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1001"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="691"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="751"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1032"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="350"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1272"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="921"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="2564"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="2003"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4084"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1031"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3505"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="661"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1342"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2974"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="441"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2193"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1232"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1978"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1863"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1412"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="661"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="791"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1071"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1843"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="2854"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1041"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="12558"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="17485"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3875"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="801"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3696"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="611"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4367"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3976"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3705"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1192"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3965"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="751"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3545"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1181"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3435"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1191"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2704"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3094"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="4186"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1583"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1882"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1322"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1472"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2123"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1031"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1752"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="932"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2003"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="972"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1422"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1172"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="651"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1422"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="381"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2263"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2113"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="341"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1823"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1342"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="291"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1352"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="550"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1071"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="331"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1142"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="540"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1282"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="450"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1191"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="521"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1252"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="300"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="691"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="951"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="591"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="471"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1001"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="751"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="891"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1623"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="640"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1112"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="421"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="825"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1002"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1212"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="811"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="811"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="991"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="340"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1161"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="812"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="2283"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="1993"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3315"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1131"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3355"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="570"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1572"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3154"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="441"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2173"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1092"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2153"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1972"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="872"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1285"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="661"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="741"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="951"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1853"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="3075"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1101"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="20199"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="16639"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3696"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="891"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3725"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="691"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4316"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="673"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3926"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="470"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3635"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1222"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3905"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="701"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3585"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1073"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3365"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1192"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2734"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3194"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="4036"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1552"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1863"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1953"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1572"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1773"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1061"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1963"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="915"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2224"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1131"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1652"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1101"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="892"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1412"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="421"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1973"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2123"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="390"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1883"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1412"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="981"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1132"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="350"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1131"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1402"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1282"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="491"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1242"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="290"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="691"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="841"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="641"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="471"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1041"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="912"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="751"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1623"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1182"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="471"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="921"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="992"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="941"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="521"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="832"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="711"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1042"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="310"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="611"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1122"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="911"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="2584"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="1923"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4446"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1011"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3615"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1301"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="611"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3234"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="421"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2454"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1121"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2223"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1843"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1542"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="761"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1151"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1922"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1703"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1832"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1602"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1532"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1863"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1031"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1722"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="911"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2083"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1122"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1562"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1261"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1512"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="491"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2633"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2233"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="411"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2032"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1332"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="290"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1032"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1223"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="351"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1001"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1572"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="440"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1472"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="871"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="271"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="621"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="892"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="711"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="590"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="421"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="981"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="911"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="701"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1722"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1232"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="490"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="751"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1001"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1012"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="560"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="627"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="831"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="982"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="161"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="801"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1111"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="901"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="2474"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="2063"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4036"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1072"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3435"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1241"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2804"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="440"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2383"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1282"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2464"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="661"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2213"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="852"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1392"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="661"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="861"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1001"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1873"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="2925"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="981"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="12949"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="17124"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3755"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1012"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3425"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4036"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3936"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="491"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3695"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1182"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4036"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="731"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3575"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1102"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3395"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1051"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2714"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2974"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="4186"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1492"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1923"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1592"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1432"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1953"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1031"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1742"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="901"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2083"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1142"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1545"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="500"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1051"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1452"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="411"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2304"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="580"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2163"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="391"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1603"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="430"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1272"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="280"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1052"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1282"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="330"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1242"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1562"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="481"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1462"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="501"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1095"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="270"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="520"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="902"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="701"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="441"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1062"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="871"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="761"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="580"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1553"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="530"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1172"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="928"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1011"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="821"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="782"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="721"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1061"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="611"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="440"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="681"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1221"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1042"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1843"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="1963"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3935"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="982"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3485"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1382"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="550"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2844"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="400"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2093"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1172"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2073"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="651"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1812"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1482"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="611"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1232"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1432"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="2334"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1081"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="8315"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="15482"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4016"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1001"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3435"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="651"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3695"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3705"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="501"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3736"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1202"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3885"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="711"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3556"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1071"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3201"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1032"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2875"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3095"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3765"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1392"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1282"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1782"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1372"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2184"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="991"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1853"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1001"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2233"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1012"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1562"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="501"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1412"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="580"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1522"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="381"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2043"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2263"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="370"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1913"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="410"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1422"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="310"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1043"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1021"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="341"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1132"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1442"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="471"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1352"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1192"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="270"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="551"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="821"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="571"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="851"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="431"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="901"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="871"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1312"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1753"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="540"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1162"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="491"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1201"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1002"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="921"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="641"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="741"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1112"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="500"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="201"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="670"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="580"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1112"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="801"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1723"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="2051"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3665"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1001"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3195"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="731"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1262"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="521"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2804"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="401"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2403"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1152"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2384"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1873"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="661"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1552"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1131"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1542"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="3364"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1262"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="17385"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="16744"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3615"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1042"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3274"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="691"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3945"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="852"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3765"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="701"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3807"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1211"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3776"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="681"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3345"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1062"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3435"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="881"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2611"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3295"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3606"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1633"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1141"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1812"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1462"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2063"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1031"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1933"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="912"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2053"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1152"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1492"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="521"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1162"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1512"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="411"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2784"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="600"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2093"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="370"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1793"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1392"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="280"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1082"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="520"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1392"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="340"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1132"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1402"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="441"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1382"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="501"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1142"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="290"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1131"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="821"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="2694"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="1983"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3525"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="931"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3526"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="560"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1682"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2884"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="400"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2032"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1182"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2154"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="691"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1993"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="841"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1643"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="741"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="981"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1232"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="2494"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1152"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="8101"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="19878"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3335"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1001"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3545"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="881"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4006"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="701"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3625"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="491"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3756"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1231"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3946"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3395"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="971"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3315"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="931"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2784"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2954"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3675"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1532"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1762"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1692"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1382"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1893"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1031"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2020"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="891"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2153"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1042"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1462"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="521"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1071"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1072"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1456"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="380"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2043"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="481"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2103"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="361"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1892"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="501"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1152"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="291"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="991"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1332"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="340"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="912"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="590"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1492"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1452"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1132"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="280"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="802"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="821"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="711"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1012"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="721"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="791"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1422"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="971"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="421"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="851"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1002"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1041"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="752"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="741"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1022"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="521"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="321"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="811"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="521"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1131"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="811"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1843"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="1982"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3962"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="951"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3485"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="560"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1362"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2965"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="480"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2264"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1051"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2293"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="611"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1833"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="651"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1392"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="741"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1172"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1432"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="2573"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1152"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="8402"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="17324"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4537"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="961"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3655"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4076"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="651"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3916"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="470"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3535"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1212"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3766"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="630"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3515"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1102"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3214"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="742"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2673"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3265"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3725"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1452"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1292"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1692"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1452"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1983"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1032"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1642"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="881"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2093"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1222"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1482"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="491"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1122"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1222"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="380"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2223"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2053"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="340"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1783"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="560"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1277"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="290"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1252"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1151"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="351"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1112"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1792"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="471"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1322"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1152"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="290"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="701"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="911"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="651"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="440"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="841"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="741"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="911"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="501"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1752"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="982"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="410"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1012"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="961"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="882"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="510"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="641"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="691"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="921"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="181"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="520"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="741"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1111"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="812"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1582"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="2023"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3946"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1001"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3315"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="590"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1292"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2975"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="420"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2303"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1162"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2143"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="600"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1853"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="731"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1492"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="661"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1101"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1372"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="2704"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1031"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="17055"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="17114"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3736"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="941"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3655"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4176"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="681"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3905"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3605"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1322"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3825"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="661"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3385"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1072"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3415"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="761"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2704"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3245"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3605"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1572"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1322"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1762"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1372"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1553"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1001"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1703"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="911"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2133"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1151"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1412"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="490"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="951"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1272"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="411"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2313"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1863"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="491"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1703"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="480"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1342"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="280"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="972"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="701"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1122"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="330"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1092"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="521"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1512"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="461"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1312"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="501"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="981"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="291"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="701"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="841"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="591"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="674"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="441"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="891"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="901"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="862"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="520"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1713"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1032"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="390"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="811"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1162"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="841"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="671"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="791"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="851"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="180"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="741"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1171"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="751"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1803"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="1943"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3735"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1001"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3214"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1342"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="771"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2714"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="431"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2043"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1141"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2233"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1792"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1412"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1132"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1021"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1963"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="2564"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1101"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="12568"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="15813"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3936"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="961"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3635"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4204"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4156"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3665"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1212"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3916"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="711"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3401"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1212"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3295"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="931"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2694"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2875"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3675"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1842"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1082"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1732"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1442"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1983"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1042"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1722"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="921"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2083"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1022"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1332"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="841"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1062"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="510"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1262"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="410"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2123"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1942"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="341"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1903"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1473"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="280"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="881"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1382"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="321"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1172"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1492"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="471"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1342"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="501"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1212"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="280"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="631"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="842"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="721"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="570"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="401"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="961"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="892"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="882"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="550"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1643"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="560"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="982"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="570"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="891"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1041"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="922"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="570"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="621"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="550"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1122"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="391"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="651"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1091"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="811"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1743"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="1962"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3135"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="971"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3618"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="560"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1172"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="731"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2734"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1863"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1191"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1922"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1852"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="802"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1372"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="751"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1051"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1562"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="2444"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1072"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="16163"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="17325"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3615"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1032"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3485"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4216"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3896"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="460"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3675"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1252"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3605"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="661"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3605"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1062"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3305"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1032"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2653"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3095"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3705"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1702"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1342"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1852"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1392"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1642"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1022"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1853"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="901"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1912"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1142"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1312"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="491"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1122"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="610"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1512"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="401"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2424"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2103"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="351"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1883"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1341"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="271"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1021"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1562"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="351"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1151"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1402"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="441"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1432"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="651"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1112"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="300"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="791"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="811"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="681"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="391"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="881"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="902"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="731"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1332"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1272"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="510"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="981"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1222"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="781"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="801"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1052"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="520"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="431"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="611"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="731"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1121"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="832"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1602"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="1923"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3876"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="921"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3455"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1372"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2904"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="431"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2153"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1122"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2083"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2053"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="781"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1362"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="951"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="761"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1041"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1712"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="2614"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1071"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="8005"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="15863"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3826"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="951"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3895"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="651"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3966"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="771"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3665"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3575"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1122"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3826"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3475"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1112"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3365"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="851"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2714"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2984"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3835"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1512"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1692"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1482"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1422"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1822"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1012"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2239"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="891"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1983"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1101"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1402"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1171"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1322"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="390"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2273"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2243"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="340"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1863"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="580"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1402"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="300"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1152"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1202"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="340"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1021"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1412"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="471"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1442"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1151"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="281"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="701"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="871"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="661"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="701"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="421"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="931"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="871"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="911"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="491"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1442"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1412"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="791"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="982"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="751"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="651"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="751"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="701"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="941"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="290"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="501"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="570"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1222"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="811"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1963"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="1912"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4086"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="981"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3535"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1382"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2984"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="431"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2363"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1152"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2253"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="709"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2033"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1322"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="570"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1352"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1392"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="2274"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1071"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="8182"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="16790"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3665"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="912"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3525"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="822"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4045"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4086"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3876"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1222"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3805"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="651"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3615"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1072"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3404"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="782"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2574"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3175"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="4056"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1463"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1372"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1732"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1483"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2093"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1031"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2173"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="892"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2213"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1182"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1563"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="490"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1282"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1242"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="401"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2764"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1962"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="491"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1883"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="600"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1232"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="280"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="931"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1222"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="320"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1262"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1462"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="481"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1362"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="495"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1142"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="270"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="711"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="871"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="721"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="962"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="891"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="951"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="521"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1673"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="540"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1292"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="381"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="781"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="951"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1362"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="681"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="691"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1142"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="510"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="271"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="480"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="852"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1051"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="801"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1733"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="2093"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4356"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="982"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3425"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1272"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="540"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3164"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="441"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2093"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1052"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2243"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1612"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="741"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1342"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="721"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1022"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1562"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="2283"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1092"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="8455"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="16544"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3665"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="932"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3575"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="651"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3986"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3875"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3976"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1202"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4106"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3636"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1091"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3625"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="821"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3255"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3144"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3515"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1872"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1182"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1752"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1442"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1901"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="992"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1853"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="901"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2003"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1031"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1412"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1052"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="611"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1302"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="400"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1993"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2183"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="370"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1602"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1312"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="270"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="981"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1092"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="310"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1132"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1662"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1332"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="490"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1121"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="261"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="661"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="811"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="681"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="390"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="901"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1148"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="971"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="521"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1532"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1182"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="430"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="731"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1181"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1122"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="530"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="951"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="851"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="501"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="230"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="691"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1091"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="871"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1930"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="1883"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3515"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="872"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3195"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="721"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1572"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="521"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3275"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="390"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2284"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1051"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2134"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="620"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2013"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="801"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1923"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="791"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1042"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1342"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="3215"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1031"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="17966"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="17415"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3725"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="972"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3716"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="620"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3995"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="651"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3946"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="481"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3706"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1231"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4186"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="661"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3625"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1082"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3255"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="771"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2414"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2914"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="4176"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1672"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1242"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1592"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1562"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2013"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1042"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1852"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="902"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2053"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1002"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1362"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1102"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1071"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1321"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="411"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2744"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="570"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2153"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="330"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1833"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1452"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="351"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="921"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1282"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="340"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1001"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1302"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1192"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1212"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="270"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="661"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="832"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="611"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="711"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="401"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="981"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="887"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="992"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1652"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="681"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1101"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="411"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="841"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1513"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="952"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="641"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="781"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="861"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="290"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="491"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1091"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="741"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1883"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="1893"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3635"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="961"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3395"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1142"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3115"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="450"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1983"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1152"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1983"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2083"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="812"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1272"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="861"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="972"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1442"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="2484"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1152"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="8021"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="16192"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3595"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1031"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3656"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="651"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3975"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4376"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="471"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3606"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1191"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3945"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="661"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3646"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="961"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3295"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="791"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2674"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2866"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3445"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1502"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1292"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1883"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1382"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1823"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1061"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1662"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="841"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2053"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1232"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1431"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="481"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="972"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="460"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1722"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="421"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2103"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2203"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="351"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2003"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="421"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1442"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="281"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="961"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1002"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="330"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1142"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1462"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1322"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="501"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1343"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="270"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="530"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="992"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="621"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="741"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="401"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1062"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="761"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="852"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="500"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2023"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1582"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="421"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="801"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1021"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="871"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="702"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="761"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="681"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1041"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="200"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="811"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="762"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1152"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="811"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1703"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="2404"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4026"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="971"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3655"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1568"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2754"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="401"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2313"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1152"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1863"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2093"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1392"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="570"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="681"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1302"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1652"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="2503"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1172"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="8103"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="16524"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3635"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="942"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3875"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4186"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3675"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="471"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3615"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1122"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3886"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="661"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3375"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="961"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3716"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="791"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2844"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3314"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="4056"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1683"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1782"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1862"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1352"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1870"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1032"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2604"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="881"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2134"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1412"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1752"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="501"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1031"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1342"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="401"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2073"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="580"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1983"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="330"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1813"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="410"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1272"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="300"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1061"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="541"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1122"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="310"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1151"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1522"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="471"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1262"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="500"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1211"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="431"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="801"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="881"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="621"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="410"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1101"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="942"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="872"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="490"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1172"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1632"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="431"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="841"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="972"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="881"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="781"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="691"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1012"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="520"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="331"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="610"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="581"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1151"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="811"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1878"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="1962"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3565"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="991"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3175"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1592"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2854"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="400"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2234"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1151"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2313"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="711"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1983"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="811"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1382"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="721"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1242"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1612"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="2764"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1032"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="8262"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="17798"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3726"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="911"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3556"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4086"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="711"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3826"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="451"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3605"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1202"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3816"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="621"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3485"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1051"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3385"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="881"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2724"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3205"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3565"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1723"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1252"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1702"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1463"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2083"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1031"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1682"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="882"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2123"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1132"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1482"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1803"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="701"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1392"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="421"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2123"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="550"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2018"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="361"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1833"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1402"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="271"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="881"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="561"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1252"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="331"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1092"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="530"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1522"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="470"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1672"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="511"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1132"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="280"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="801"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="871"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="721"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="431"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="891"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="942"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1192"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1102"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="510"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1152"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="461"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="851"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="991"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="989"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="550"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="631"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="721"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="961"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="521"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="281"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1232"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="721"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1873"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="1903"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3545"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="961"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3365"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="560"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1152"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="651"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3405"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="400"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2133"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1152"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2193"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1853"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="811"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1493"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="570"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="777"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1102"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1442"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync100">
+ <group name="synchronize 100 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1623"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1251"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1872"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="1332"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2384"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1041"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1783"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="941"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 100 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2163"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="941"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1392"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="501"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync10">
+ <group name="synchronize 10 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1142"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="661"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1622"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="391"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2143"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="590"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2353"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="371"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 10 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1672"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="431"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1422"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="281"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync1">
+ <group name="synchronize 1 added file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1001"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1322"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="321"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 modified file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1082"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="510"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1402"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="470"/>
+ </task>
+ </group>
+ </group>
+ <group name="synchronize 1 removed file(s)">
+ <group name="as outgoing changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1392"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="as incoming changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1132"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="280"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.SyncTests" name="testSync0">
+ <group name="test sync with no changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="691"/>
+ </task>
+ <task name="Nothing to Release">
+ <result elapsed="0"/>
+ </task>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testTinyWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="801"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="871"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="701"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="381"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="971"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="851"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="761"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1878"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="641"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1382"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="411"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="962"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="991"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="951"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="531"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="661"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="711"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="952"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="490"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="361"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="540"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testSmallWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="1142"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="821"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="2383"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="1862"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3505"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1142"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3375"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="551"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1632"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="601"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3155"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="460"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2404"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1081"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="2123"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="591"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1909"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1653"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="571"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="721"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1142"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="1522"/>
+ </task>
+ </group>
+ </group>
+ </case>
+ <case class="org.eclipse.vcm.tests.ui.benchmark.WorkflowTests" name="testBigWorkflow">
+ <group name="test project sharing">
+ <task name="Synchronize with Stream action (share project)">
+ <result elapsed="2965"/>
+ </task>
+ </group>
+ <group name="test initial project commit">
+ <task name="Synchronize with Stream action">
+ <result elapsed="1041"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="16794"/>
+ </task>
+ </group>
+ <group name="test initial project checkout">
+ <task name="Repository View Checkout action">
+ <result elapsed="16263"/>
+ </task>
+ </group>
+ <group name="test incoming and outgoing change scenarios">
+ <group name="adding a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3595"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1091"/>
+ </task>
+ </group>
+ <group name="catching up to a new component - localized additions and some changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3715"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="631"/>
+ </task>
+ </group>
+ <group name="fixing a bug - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4400"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="671"/>
+ </task>
+ </group>
+ <group name="catching up to a bug fix - localized changes">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4196"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="501"/>
+ </task>
+ </group>
+ <group name="moving a package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3715"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1252"/>
+ </task>
+ </group>
+ <group name="catching up to a moved package - scattered changes, files moved">
+ <task name="Synchronize with Stream action">
+ <result elapsed="4186"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="802"/>
+ </task>
+ </group>
+ <group name="big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3545"/>
+ </task>
+ <task name="Sync View Release action">
+ <result elapsed="1091"/>
+ </task>
+ </group>
+ <group name="catching up to a big refactoring - scattered changes, files renamed and balanced additions/deletions">
+ <task name="Synchronize with Stream action">
+ <result elapsed="3335"/>
+ </task>
+ <task name="Sync View Catchup action">
+ <result elapsed="961"/>
+ </task>
+ </group>
+ </group>
+ <group name="test replace with remote contents scenarios">
+ <group name="no local dirty files, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="2754"/>
+ </task>
+ </group>
+ <group name="abandoning some local work, no remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3064"/>
+ </task>
+ </group>
+ <group name="no local dirty files, many remote changes">
+ <task name="Replace with Team Stream action">
+ <result elapsed="3645"/>
+ </task>
+ </group>
+ </group>
+ </case>
+</log>
diff --git a/tests/org.eclipse.team.tests.cvs.core/benchmark/vcmui_benchmark.bat b/tests/org.eclipse.team.tests.cvs.core/benchmark/vcmui_benchmark.bat
new file mode 100644
index 000000000..c92dab1f8
--- /dev/null
+++ b/tests/org.eclipse.team.tests.cvs.core/benchmark/vcmui_benchmark.bat
@@ -0,0 +1,43 @@
+@echo off
+rem VCM UI benchmark script
+rem Expects the following plugins to be installed:
+rem org.eclipse.core.tests.harness
+rem org.eclipse.team.core
+rem org.eclipse.team.cvs.core
+rem org.eclipse.team.cvs.ui
+rem org.eclipse.team.tests.cvs.core
+rem org.eclipse.team.ui
+rem org.eclipse.vcm.core
+rem org.eclipse.vcm.core.cvs
+rem org.eclipse.vcm.tests.core
+rem org.eclipse.vcm.tests.ui
+rem org.eclipse.vcm.ui
+rem org.eclipse.vcm.ui.cvs
+rem org.junit
+
+set ROOT=D:\PerformanceTesting
+
+set ECLIPSE=%ROOT%\eclipse
+set REPOSITORY_PROPERTIES=%ROOT%\repository.properties
+set TEST=vcmui.benchmark.all
+set LOG=%ROOT%\%TEST%.xml
+set REPEAT=21
+set IGNOREFIRST=
+
+set PLUGINS=%ECLIPSE%\plugins
+set WORKSPACE=%ECLIPSE%\workspace
+set JRE=%ROOT%\jre
+set JAVA=%JRE%\bin\java.exe
+set HARNESS=org.eclipse.team.tests.cvs.core.harness
+
+set VMARGS=-Declipse.tests.vcm.properties=%REPOSITORY_PROPERTIES%
+set PROGARGS=-dev bin -application %HARNESS% -test %TEST% -log %LOG% -purge -repeat %REPEAT% %IGNOREFIRST%
+
+pushd %ECLIPSE%
+echo Purging the workspace: %WORKSPACE%
+del /S /F /Q %WORKSPACE% >NUL:
+@echo on
+@echo Running VCM UI benchmark test
+%JAVA% -cp startup.jar %VMARGS% org.eclipse.core.launcher.UIMain %PROGARGS%
+@echo off
+popd

Back to the top