<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-3573</id>
	<title>Nabble - Jikes RVM</title>
	<updated>2009-12-21T19:23:55Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Jikes-RVM-f3573.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Jikes-RVM-f3573.html" />
	<subtitle type="html">The Jikes Research Virtual Machine (RVM) is designed to execute Java(TM) programs that are typically used in research on fundamental virtual machine design issues. Jikes RVM home is &lt;a href=&quot;http://jikesrvm.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26883458</id>
	<title>[jira] Commented: (RVM-845) Primitive write barrier support</title>
	<published>2009-12-21T19:23:55Z</published>
	<updated>2009-12-21T19:23:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;http://jira.codehaus.org/browse/RVM-845?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=203766#action_203766&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/RVM-845?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=203766#action_203766&lt;/a&gt;&amp;nbsp;] 
&lt;br&gt;&lt;br&gt;Steve Blackburn commented on RVM-845:
&lt;br&gt;-------------------------------------
&lt;br&gt;&lt;br&gt;Laurence,
&lt;br&gt;&lt;br&gt;It looks good. &amp;nbsp;I'm going to go ahead and performance test it.
&lt;br&gt;&lt;br&gt;I only saw one significant issue (trivial to fix). &amp;nbsp; You have applied this pattern of change to Barriers.java:
&lt;br&gt;&lt;br&gt;{code}
&lt;br&gt;- &amp;nbsp; &amp;nbsp;if (NEEDS_BOOLEAN_GC_WRITE_BARRIER) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;if (NEEDS_BOOLEAN_PUTFIELD_BARRIER) {
&lt;br&gt;{code}
&lt;br&gt;&lt;br&gt;That change is an error; it breaks some intentional abstraction:
&lt;br&gt;&lt;br&gt;* {{NEEDS_BOOLEAN_PUTFIELD_BARRIER}} encapsulates the idea that the VM is required to insert a barrier. &amp;nbsp;It intentionally abstracts over the _reason_ for that barrier being required. &amp;nbsp;The VM (compilers, classloader, etc etc) should only ever refer to the constants of this form when deciding whether a barrier is required. &amp;nbsp;The nomenclature here is Java-specific.
&lt;br&gt;* {{NEEDS_BOOLEAN_GC_WRITE_BARRIER}} is private to Barriers.java and exposes a (conditional) _reason_ for the requirement to have a barrier. &amp;nbsp;In the current code base, this is the _only_ reason why a VM barrier might be required, but this is not generally the case. &amp;nbsp;There exist important non-GC rationales for implementing barriers (something like arraylets is one example). &amp;nbsp;These other cases need not be mutually exclusive nor one-to-one with GC requirements. &amp;nbsp; The nomenclature here is language-neutral.
&lt;br&gt;&lt;br&gt;So the code above deals separately with each reason for including a barrier. &amp;nbsp; I anticipate the addition of other non-GC cases in the near term (the code exists...). &amp;nbsp;So we would then see as set of variables in the form of {{NEEDS_BOOLEAN_FOOBAR_WRITE_BARRIER}}, etc. &amp;nbsp;I realize that without the other cases in place the code probably looks strange
&lt;br&gt;&lt;br&gt;One other minor trivial issue: &amp;nbsp;you should probably change {{Magic_Store64_MD}} etc to {{Magic_Store64MD}}. &amp;nbsp;AFAIK, the {{Magic_}} prefix is a special one to denote a particular set of classes, but otherwise we're supposed to avoid underbars in class names.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Primitive write barrier support
&lt;br&gt;&amp;gt; -------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: RVM-845
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;http://jira.codehaus.org/browse/RVM-845&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/RVM-845&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: RVM
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: New Feature
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Components: Compiler: Baseline, Compiler: Optimizing, MMTk
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Laurence Hellyer
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Steve Blackburn
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: 3.1.1
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: 00-barrier-refactor.patch, 01-barrier-refactor.patch, primitiveWriteBarriers.patch, primitiveWriteBarriersV2.patch, RVM-845-20091211.patch.0, RVM-845-20091211.patch.1, RVM845-20091003.patch, RVM845-20091005.patch, statementOfContribution.txt, usePrimitiveWriteBarriers.patch
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Certain classes of garbage collection require write barriers on primitives as well as references. &amp;nbsp;This patch adds the required support to JikesRVM and MMTk for primitive write barriers on both Intel and PowerPC using either the Baseline or Opt compiler.
&lt;br&gt;&amp;gt; Specifically this patch adds support for write barriers on primitive putfields and primitive array stores. &amp;nbsp;Object cloning and reflection code has been updated to use primitive write barriers as required. &amp;nbsp;A separate patch can be made available that provides a collector that demonstrates using primitive write barriers if desired.
&lt;br&gt;&amp;gt; As would be expected, applying this patch to trunk (r15745) results in no measurable slowdown to configurations that do not require primitive write barriers - the optimising compiler removes all primitive write barrier specific code (detailed measurements below).
&lt;br&gt;&amp;gt; In adding primitive write barriers to the compilers, a number of enhancements were made to Magic operations that should be of benefit to all users:
&lt;br&gt;&amp;gt; &amp;nbsp;* Address.store can now store a boolean with optional offset
&lt;br&gt;&amp;gt; &amp;nbsp;* Added Magic.setFloatAtOffset and setBooleanAtOffset (with optional locationMetadata)
&lt;br&gt;&amp;gt; &amp;nbsp;* Optional locationMetadata argument for Magic.setByteAtOffset, setCharAtOffset, setShortAtOffset, setLongAtOffset, setDoubleAtOffset and setIntAtOffset
&lt;br&gt;&amp;gt; It was decided to use the Java type system to provide a separate MMTk write barrier for each Java type (char, short etc.) rather than abuse the type system by having a different barrier for each field size (byte, short, word and double word). &amp;nbsp;Whilst this approach leads to a larger patch, we believe that:
&lt;br&gt;&amp;gt; &amp;nbsp;a) preserving type safety is important
&lt;br&gt;&amp;gt; &amp;nbsp;b) it improves readability of the code
&lt;br&gt;&amp;gt; &amp;nbsp;c) this technique allows for accounting by type
&lt;br&gt;&amp;gt; &amp;nbsp;d) as the barriers are inlined, the runtime cost to the compiler of extra barrier methods will be small and there should be no additional mutator overhead (although this has not been measured)
&lt;br&gt;&amp;gt; The code styles for the IA32 and PowerPC compilers are very different and this patch attempts to implement the primitive write barriers in a native style for each compiler. &amp;nbsp;Where possible helper methods have been used to reduce the size of code and reduce boiler plate. &amp;nbsp;For a change of this size I fully support a review of the code and it being signed off by the compiler maintainers before it enters trunk. 
&lt;br&gt;&amp;gt; Quick performance numbers:
&lt;br&gt;&amp;gt; The performance of a clean checkout of trunk was compared to the performance of trunk with the patch applied on a number of ia32 machines. &amp;nbsp;Each benchmark was run with 3x minimum heap for 6 iterations within a single RVM invocation, this was repeated for a total of 5 invocations per build/benchmark. &amp;nbsp;A compiler advice file was used to keep the compiler workload constant and the machines had their networks down. &amp;nbsp;The geomean of total execution time for each build/benchmark was calculated and used to calculate the overhead between builds:
&lt;br&gt;&amp;gt; Benchmark:	Relative overhead with patch applied:
&lt;br&gt;&amp;gt; Antlr		1.002
&lt;br&gt;&amp;gt; Bloat		1.005
&lt;br&gt;&amp;gt; Fop		 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1.003
&lt;br&gt;&amp;gt; Hsqldb	 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.984
&lt;br&gt;&amp;gt; Jython		1.005
&lt;br&gt;&amp;gt; Luindex		1.011
&lt;br&gt;&amp;gt; Lusearch	1.002
&lt;br&gt;&amp;gt; Pmd		0.997
&lt;br&gt;&amp;gt; Xalan		1.008
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Jikesrvm-issues mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26883458&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-issues@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-issues&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-issues&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-issues-f22044.html&quot; embed=&quot;fixTarget[22044]&quot; target=&quot;_top&quot; &gt;jikesrvm-issues&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28RVM-845%29-Primitive-write-barrier-support-tp24646888p26883458.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26883205</id>
	<title>[jira] Commented: (RVM-845) Primitive write barrier support</title>
	<published>2009-12-21T18:40:55Z</published>
	<updated>2009-12-21T18:40:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;http://jira.codehaus.org/browse/RVM-845?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=203763#action_203763&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/RVM-845?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=203763#action_203763&lt;/a&gt;&amp;nbsp;] 
&lt;br&gt;&lt;br&gt;Steve Blackburn commented on RVM-845:
&lt;br&gt;-------------------------------------
&lt;br&gt;&lt;br&gt;Laurence, thanks for your patience. &amp;nbsp; I'm working on it now. &amp;nbsp; Just slowly walking through the 227KB patch.
&lt;br&gt;&lt;br&gt;However, I noticed that it failed the pre-commit test. &amp;nbsp; Error message below. &amp;nbsp; I will continue going through the patch, but if you get the chance to look into the error below before I do, that would be nice.
&lt;br&gt;&lt;br&gt;---
&lt;br&gt;&lt;br&gt;===================== Results =====================
&lt;br&gt;Total Success Rate 122/124
&lt;br&gt;&lt;br&gt;Subversion Revision: 15804M
&lt;br&gt;&lt;br&gt;Result &amp;nbsp; &amp;nbsp;Configuration &amp;nbsp; Group &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Test &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Run &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reason
&lt;br&gt;FAILURE prototype.default basic TestFieldReflection &amp;nbsp; &amp;nbsp; Unexpected exit code.
&lt;br&gt;FAILURE development.Opt_1 basic TestFieldReflection &amp;nbsp; &amp;nbsp; Unexpected exit code.
&lt;br&gt;&lt;br&gt;===================================================
&lt;br&gt;&lt;br&gt;---
&lt;br&gt;&lt;br&gt;Testing on getFields
&lt;br&gt;Values: &amp;nbsp;true &amp;nbsp; 127 &amp;nbsp; 1.0 &amp;nbsp; 1.0 &amp;nbsp; &amp;nbsp; 1 &amp;nbsp; &amp;nbsp; 1 &amp;nbsp; &amp;nbsp; 1 &amp;nbsp;true &amp;nbsp; 127 &amp;nbsp; 1.0 &amp;nbsp; 1.0 &amp;nbsp; &amp;nbsp; 1 &amp;nbsp; &amp;nbsp; 1 &amp;nbsp; &amp;nbsp; 1
&lt;br&gt;Set booleans to false +!!!!!!+!!!!!!
&lt;br&gt;Values: false &amp;nbsp; 127 &amp;nbsp; 1.0 &amp;nbsp; 1.0 &amp;nbsp; &amp;nbsp; 1 &amp;nbsp; &amp;nbsp; 1 &amp;nbsp; &amp;nbsp; 1 false &amp;nbsp; 127 &amp;nbsp; 1.0 &amp;nbsp; 1.0 &amp;nbsp; &amp;nbsp; 1 &amp;nbsp; &amp;nbsp; 1 &amp;nbsp; &amp;nbsp; 1
&lt;br&gt;Set bytes to 12 !++++++!+vm internal error at:
&lt;br&gt;Thread #12
&lt;br&gt;-- Stack --
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85c80, 0x5b336bfa] Lorg/jikesrvm/VM; sysFail(Ljava/lang/String;)V at line 2275
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85ca0, 0x5b336cff] Lorg/jikesrvm/VM; _assertionFailure(Ljava/lang/String;Ljava/lang/String;)V at line 613
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85cc8, 0x5b336d8d] Lorg/jikesrvm/VM; _assert(ZLjava/lang/String;Ljava/lang/String;)V at line 596
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85cec, 0x5b24a73b] Lorg/jikesrvm/VM; _assert(Z)V at line 574
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85d0c, 0x5b01a4bb] Lorg/jikesrvm/runtime/Statics; setSlotContents(Lorg/vmmagic/unboxed/Offset;Ljava/lang/Object;)V at line 625
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85d38, 0x5b23c80d] Lorg/jikesrvm/classloader/RVMField; setDoubleValueUnchecked(Ljava/lang/Object;D)V at line 573
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85d6c, 0x5b23cd3f] Ljava/lang/reflect/VMCommonLibrarySupport; setByteInternal(Ljava/lang/Object;BLorg/jikesrvm/classloader/RVMField;)V at line 795
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85da0, 0x5b0a21bd] Ljava/lang/reflect/VMCommonLibrarySupport; setByte(Ljava/lang/Object;BLorg/jikesrvm/classloader/RVMField;Ljava/lang/reflect/Field;Lorg/jikesrvm/classloader/RVMClass;)V at line 726
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85dd8, 0x5b0a0e5c] Ljava/lang/reflect/VMField; setByte(Ljava/lang/reflect/Field;Ljava/lang/Object;B)V at line 113
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85e08, 0x6783e581] Ljava/lang/reflect/Field; setByte(Ljava/lang/Object;B)V at line 540
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85e44, 0x678350cd] Ltest/org/jikesrvm/basic/core/reflect/TestFieldReflection; testByte(Ljava/lang/Object;[Ljava/lang/reflect/Field;)V at line 154
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85e6c, 0x6782c193] Ltest/org/jikesrvm/basic/core/reflect/TestFieldReflection; testFieldReflection(Ljava/lang/Object;Ljava/lang/Class;[Ljava/lang/reflect/Field;)V at line 80
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85e90, 0x678310f9] Ltest/org/jikesrvm/basic/core/reflect/TestFieldReflection; testFieldReflection(Ljava/lang/Class;)V at line 66
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85eac, 0x5b2d6a36] Ltest/org/jikesrvm/basic/core/reflect/TestFieldReflection; main([Ljava/lang/String;)V at line 60
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85ec4, 0x5b267ddc] &amp;lt;invisible method&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85f38, 0x5b268240] Lorg/jikesrvm/runtime/Reflection; outOfLineInvoke(Lorg/jikesrvm/classloader/RVMMethod;Ljava/lang/Object;[Ljava/lang/Object;Z)Ljava/lang/Object; at line 194
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85f70, 0x5b1ae7e9] Lorg/jikesrvm/runtime/Reflection; invoke(Lorg/jikesrvm/classloader/RVMMethod;Lorg/jikesrvm/runtime/ReflectionBase;Ljava/lang/Object;[Ljava/lang/Object;Z)Ljava/lang/Object; at line 76
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85fb0, 0x5b29df07] Lorg/jikesrvm/scheduler/MainThread; run()V at line 201
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85fd8, 0x5b322039] Lorg/jikesrvm/scheduler/RVMThread; run()V at line 2491
&lt;br&gt;&amp;nbsp; &amp;nbsp;at [0x67d85ff8, 0x080501e5] Lorg/jikesrvm/scheduler/RVMThread; startoff()V at line 2535
&lt;br&gt;********************************************************************************
&lt;br&gt;* &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Abnormal termination of Jikes RVM &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; *
&lt;br&gt;* Jikes RVM terminated abnormally indicating a problem in the virtual machine. *
&lt;br&gt;* Jikes RVM relies on community support to get debug information. Help improve *
&lt;br&gt;* Jikes RVM for everybody by reporting this error. Please see: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; *
&lt;br&gt;* &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://jikesrvm.org/Reporting+Bugs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jikesrvm.org/Reporting+Bugs&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; *
&lt;br&gt;********************************************************************************
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Primitive write barrier support
&lt;br&gt;&amp;gt; -------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: RVM-845
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;http://jira.codehaus.org/browse/RVM-845&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/RVM-845&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: RVM
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: New Feature
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Components: Compiler: Baseline, Compiler: Optimizing, MMTk
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Laurence Hellyer
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Steve Blackburn
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: 3.1.1
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: 00-barrier-refactor.patch, 01-barrier-refactor.patch, primitiveWriteBarriers.patch, primitiveWriteBarriersV2.patch, RVM-845-20091211.patch.0, RVM-845-20091211.patch.1, RVM845-20091003.patch, RVM845-20091005.patch, statementOfContribution.txt, usePrimitiveWriteBarriers.patch
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Certain classes of garbage collection require write barriers on primitives as well as references. &amp;nbsp;This patch adds the required support to JikesRVM and MMTk for primitive write barriers on both Intel and PowerPC using either the Baseline or Opt compiler.
&lt;br&gt;&amp;gt; Specifically this patch adds support for write barriers on primitive putfields and primitive array stores. &amp;nbsp;Object cloning and reflection code has been updated to use primitive write barriers as required. &amp;nbsp;A separate patch can be made available that provides a collector that demonstrates using primitive write barriers if desired.
&lt;br&gt;&amp;gt; As would be expected, applying this patch to trunk (r15745) results in no measurable slowdown to configurations that do not require primitive write barriers - the optimising compiler removes all primitive write barrier specific code (detailed measurements below).
&lt;br&gt;&amp;gt; In adding primitive write barriers to the compilers, a number of enhancements were made to Magic operations that should be of benefit to all users:
&lt;br&gt;&amp;gt; &amp;nbsp;* Address.store can now store a boolean with optional offset
&lt;br&gt;&amp;gt; &amp;nbsp;* Added Magic.setFloatAtOffset and setBooleanAtOffset (with optional locationMetadata)
&lt;br&gt;&amp;gt; &amp;nbsp;* Optional locationMetadata argument for Magic.setByteAtOffset, setCharAtOffset, setShortAtOffset, setLongAtOffset, setDoubleAtOffset and setIntAtOffset
&lt;br&gt;&amp;gt; It was decided to use the Java type system to provide a separate MMTk write barrier for each Java type (char, short etc.) rather than abuse the type system by having a different barrier for each field size (byte, short, word and double word). &amp;nbsp;Whilst this approach leads to a larger patch, we believe that:
&lt;br&gt;&amp;gt; &amp;nbsp;a) preserving type safety is important
&lt;br&gt;&amp;gt; &amp;nbsp;b) it improves readability of the code
&lt;br&gt;&amp;gt; &amp;nbsp;c) this technique allows for accounting by type
&lt;br&gt;&amp;gt; &amp;nbsp;d) as the barriers are inlined, the runtime cost to the compiler of extra barrier methods will be small and there should be no additional mutator overhead (although this has not been measured)
&lt;br&gt;&amp;gt; The code styles for the IA32 and PowerPC compilers are very different and this patch attempts to implement the primitive write barriers in a native style for each compiler. &amp;nbsp;Where possible helper methods have been used to reduce the size of code and reduce boiler plate. &amp;nbsp;For a change of this size I fully support a review of the code and it being signed off by the compiler maintainers before it enters trunk. 
&lt;br&gt;&amp;gt; Quick performance numbers:
&lt;br&gt;&amp;gt; The performance of a clean checkout of trunk was compared to the performance of trunk with the patch applied on a number of ia32 machines. &amp;nbsp;Each benchmark was run with 3x minimum heap for 6 iterations within a single RVM invocation, this was repeated for a total of 5 invocations per build/benchmark. &amp;nbsp;A compiler advice file was used to keep the compiler workload constant and the machines had their networks down. &amp;nbsp;The geomean of total execution time for each build/benchmark was calculated and used to calculate the overhead between builds:
&lt;br&gt;&amp;gt; Benchmark:	Relative overhead with patch applied:
&lt;br&gt;&amp;gt; Antlr		1.002
&lt;br&gt;&amp;gt; Bloat		1.005
&lt;br&gt;&amp;gt; Fop		 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1.003
&lt;br&gt;&amp;gt; Hsqldb	 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.984
&lt;br&gt;&amp;gt; Jython		1.005
&lt;br&gt;&amp;gt; Luindex		1.011
&lt;br&gt;&amp;gt; Lusearch	1.002
&lt;br&gt;&amp;gt; Pmd		0.997
&lt;br&gt;&amp;gt; Xalan		1.008
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Jikesrvm-issues mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26883205&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-issues@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-issues&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-issues&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-issues-f22044.html&quot; embed=&quot;fixTarget[22044]&quot; target=&quot;_top&quot; &gt;jikesrvm-issues&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28RVM-845%29-Primitive-write-barrier-support-tp24646888p26883205.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26883056</id>
	<title>[rvm-regress] [core-ppc64.12480] 6 FAILURES</title>
	<published>2009-12-21T17:43:18Z</published>
	<updated>2009-12-21T17:43:18Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for core-ppc64 (r15804) on piccolo.watson.ibm.com, Mon Dec 21 19:13:35 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12480/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12480/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12296&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12296 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12311&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12311 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12339&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12339 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12366&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12366 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12380&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12380 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12394&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12394 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12410&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12410 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12437&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12437 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12465&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12465 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12480&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12480 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 6/660 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;0 new failures this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;11 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;4 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;08/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;09/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;653/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;652/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;653/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;653/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;654/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;651/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;655/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;655/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;653/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;654/660&lt;/td&gt;
    
  &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: antlr&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;30762&quot;&gt;30762&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;53924&quot;&gt;53924 (+104%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;45539&quot;&gt;45539 (+72%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;26575&quot;&gt;26575&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;52454&quot;&gt;52454 (+98%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;33848&quot;&gt;33848&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;27223&quot;&gt;27223&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;44184&quot;&gt;44184 (+67%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green; font-weight: bold;&quot; title=&quot;26367&quot;&gt;26367&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;34133&quot;&gt;34133&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: bloat&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14719&quot;&gt;14719 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14585&quot;&gt;14585 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14683&quot;&gt;14683 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14495&quot;&gt;14495 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;14169&quot;&gt;14169 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;14249&quot;&gt;14249 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14489&quot;&gt;14489 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14870&quot;&gt;14870 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14472&quot;&gt;14472 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14555&quot;&gt;14555 (+4%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;179309&quot;&gt;179309 (+45%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;182991&quot;&gt;182991 (+48%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;175992&quot;&gt;175992 (+42%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;138159&quot;&gt;138159&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;147339&quot;&gt;147339&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;276631&quot;&gt;276631 (+124%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;206570&quot;&gt;206570 (+67%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;149459&quot;&gt;149459&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;141817&quot;&gt;141817&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;181399&quot;&gt;181399 (+46%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: fop&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5119&quot;&gt;5119 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5079&quot;&gt;5079 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5099&quot;&gt;5099 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5056&quot;&gt;5056 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5111&quot;&gt;5111 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5100&quot;&gt;5100 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5084&quot;&gt;5084 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5101&quot;&gt;5101 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5136&quot;&gt;5136 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5214&quot;&gt;5214 (+8%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: hsqldb&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6320&quot;&gt;6320&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;6445&quot;&gt;6445 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;6386&quot;&gt;6386 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;6488&quot;&gt;6488 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6222&quot;&gt;6222&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6140&quot;&gt;6140&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;6469&quot;&gt;6469 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6321&quot;&gt;6321&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;6351&quot;&gt;6351 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7360&quot;&gt;7360 (+21%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: jython&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16571&quot;&gt;16571 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16356&quot;&gt;16356 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16229&quot;&gt;16229 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16372&quot;&gt;16372 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16285&quot;&gt;16285 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16721&quot;&gt;16721 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16426&quot;&gt;16426 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16200&quot;&gt;16200 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;16078&quot;&gt;16078 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16750&quot;&gt;16750 (+7%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: luindex&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;59847&quot;&gt;59847 (+19%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;66838&quot;&gt;66838 (+33%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;64162&quot;&gt;64162 (+28%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;62490&quot;&gt;62490 (+25%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;70669&quot;&gt;70669 (+41%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;53803&quot;&gt;53803&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;65924&quot;&gt;65924 (+31%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;63354&quot;&gt;63354 (+26%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;50505&quot;&gt;50505&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;67814&quot;&gt;67814 (+35%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: lusearch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;21144&quot;&gt;21144 (+247%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;8359&quot;&gt;8359&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9527&quot;&gt;9527 (+56%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7718&quot;&gt;7718&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7117&quot;&gt;7117&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;8507&quot;&gt;8507&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9026&quot;&gt;9026&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9475&quot;&gt;9475 (+55%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7876&quot;&gt;7876&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;8835&quot;&gt;8835&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: pmd&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11648&quot;&gt;11648 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11550&quot;&gt;11550 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11522&quot;&gt;11522 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11350&quot;&gt;11350 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11357&quot;&gt;11357 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11401&quot;&gt;11401 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11553&quot;&gt;11553 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11789&quot;&gt;11789 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11542&quot;&gt;11542 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;11288&quot;&gt;11288 (+3%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11581&quot;&gt;11581 (+29%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10807&quot;&gt;10807 (+20%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11192&quot;&gt;11192 (+25%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9368&quot;&gt;9368&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;10745&quot;&gt;10745 (+20%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11057&quot;&gt;11057 (+23%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11326&quot;&gt;11326 (+26%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11079&quot;&gt;11079 (+24%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9327&quot;&gt;9327&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11081&quot;&gt;11081 (+24%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjbb2000&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;26487&quot;&gt;26487 (-37%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;37712&quot;&gt;37712&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;41255&quot;&gt;41255&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13544&quot;&gt;13544 (-67%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;25715&quot;&gt;25715 (-39%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;39897&quot;&gt;39897&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3802&quot;&gt;3802 (-13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4122&quot;&gt;4122 (-5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3789&quot;&gt;3789 (-13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4250&quot;&gt;4250&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;3989&quot;&gt;3989 (-8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4253&quot;&gt;4253&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4232&quot;&gt;4232&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3898&quot;&gt;3898 (-10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4275&quot;&gt;4275&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4257&quot;&gt;4257&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjvm98&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;182.29&quot;&gt;182.29 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;179.03&quot;&gt;179.03 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;178.87&quot;&gt;178.87 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;180.21&quot;&gt;180.21 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;180.15&quot;&gt;180.15 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;180.19&quot;&gt;180.19 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;179.35&quot;&gt;179.35 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;183.65&quot;&gt;183.65 (-0%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;180.38&quot;&gt;180.38 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;177.57&quot;&gt;177.57 (-4%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Build Configuration By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;08/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;09/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;prototype-opt&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;97%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;prototype&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;production&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;development&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;08/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;09/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestNestedGC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;TestParallelHardwareTrap&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(64,127,0);&quot;&gt;57%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(64,127,0);&quot;&gt;57%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;Exhaust&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;ReferenceStress&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26883056&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---core-ppc64.12480--6-FAILURES-tp26883056p26883056.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26882014</id>
	<title>Re: [rvm-core] a object copying related problem</title>
	<published>2009-12-21T15:56:04Z</published>
	<updated>2009-12-21T15:56:04Z</updated>
	<author>
		<name>Robin Garner</name>
	</author>
	<content type="html">Hi Da Feng,
&lt;br&gt;&lt;br&gt;Try putting a watch on object 332, ie watchObject=332.
&lt;br&gt;&lt;br&gt;You might also try watching the relevant addresses, ie
&lt;br&gt;&lt;br&gt;watchAddress=0x201AFDBC,0x201AFDC0,0x201AFDC4,0x201AFDC8,0x201AFDCC
&lt;br&gt;&lt;br&gt;and perhaps the source addresses - the MMTk harness has a 5-word object 
&lt;br&gt;header, and the allocation site is in the 2nd word after the GC header.
&lt;br&gt;&lt;br&gt;btw, I think this is a discussion better suited to the 
&lt;br&gt;jikesrvm-researchers list.
&lt;br&gt;&lt;br&gt;cheers,
&lt;br&gt;Robin
&lt;br&gt;&lt;br&gt;&lt;br&gt;Da Feng wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello:
&lt;br&gt;&amp;gt; when I copy an object to an different address, the allocation site went 
&lt;br&gt;&amp;gt; wrong.
&lt;br&gt;&amp;gt; The collector works in way similar to Gen-MarkCompact. this happens when 
&lt;br&gt;&amp;gt; compacting mature heap. Can any one give me some clue?
&lt;br&gt;&amp;gt; ============================
&lt;br&gt;&amp;gt; [Full heap][GC 7 Start 3459.95 ms &amp;nbsp; 1956KB [COLLECT] Computing roots for 
&lt;br&gt;&amp;gt; mutators
&lt;br&gt;&amp;gt; [COLLECT] mutators to scan: 1
&lt;br&gt;&amp;gt; [COLLECT] Computing roots for mutator
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040018
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20040018
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040030
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20040030
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040070
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20040070
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x200400B0
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x200400B0
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x200400F0
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x200400F0
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040130
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20040130
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040170
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20040170
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x200401B0
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x200401B0
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x200401F0
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x200401F0
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040230
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20040230
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040270
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20040270
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x8CC23E48
&lt;br&gt;&amp;gt; [COLLECT] Copying object [332@24:9] from 0x8CC23E48/nursery to 0x201AFDB8/mw
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x201AFDB8
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x201AFDB8
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x201AFDB8
&lt;br&gt;&amp;gt; [ROOTS] Locals: 13
&lt;br&gt;&amp;gt; [COLLECT] mutators to scan: 0
&lt;br&gt;&amp;gt; [COLLECT] Copying object [322@24:9] from 0x8CC0BF78/nursery to 0x201B2400/mw
&lt;br&gt;&amp;gt; [COLLECT] Copying object [323@24:9] from 0x8CC0E5C0/nursery to 0x201B4A48/mw
&lt;br&gt;&amp;gt; [COLLECT] Copying object [324@24:9] from 0x8CC10C08/nursery to 0x201B7090/mw
&lt;br&gt;&amp;gt; [COLLECT] Copying object [325@24:9] from 0x8CC13250/nursery to 0x201B96D8/mw
&lt;br&gt;&amp;gt; [COLLECT] Copying object [326@24:9] from 0x8CC15898/nursery to 0x201BBD20/mw
&lt;br&gt;&amp;gt; [COLLECT] Copying object [327@24:9] from 0x8CC17EE0/nursery to 0x201C0018/mw
&lt;br&gt;&amp;gt; [COLLECT] Copying object [328@24:9] from 0x8CC1A528/nursery to 0x201C2660/mw
&lt;br&gt;&amp;gt; [COLLECT] Copying object [329@24:9] from 0x8CC1CB70/nursery to 0x201C4CA8/mw
&lt;br&gt;&amp;gt; [COLLECT] Copying object [330@24:9] from 0x8CC1F1B8/nursery to 0x201C72F0/mw
&lt;br&gt;&amp;gt; [COLLECT] Copying object [331@24:9] from 0x8CC21800/nursery to 0x201C9938/mw
&lt;br&gt;&amp;gt; [COLLECT] Computing roots for mutators
&lt;br&gt;&amp;gt; [COLLECT] mutators to scan: 1
&lt;br&gt;&amp;gt; [COLLECT] Computing roots for mutator
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040018
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20002660
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040030
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20002678
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040070
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x200026B8
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x200400B0
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x200026F8
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x200400F0
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20002738
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040130
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20002778
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040170
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x200027B8
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x200401B0
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x200027F8
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x200401F0
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20002838
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040230
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20002878
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040270
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x200028B8
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x201AFDB8
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20000018
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20000018
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20000018
&lt;br&gt;&amp;gt; [ROOTS] Locals: 13
&lt;br&gt;&amp;gt; [COLLECT] mutators to scan: 0
&lt;br&gt;&amp;gt; [COLLECT] Copying object [332@24:9] from 0x201AFDB8/mw to 0x20000018/mw
&lt;br&gt;&amp;gt; Object 0x201AFDB8[332@24:9]&amp;lt;530,20000018&amp;gt;
&lt;br&gt;&amp;gt; java.lang.IndexOutOfBoundsException: Index: 2444, Size: 12
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at java.util.ArrayList.RangeCheck(ArrayList.java:547)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at java.util.ArrayList.get(ArrayList.java:322)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at 
&lt;br&gt;&amp;gt; org.mmtk.harness.lang.runtime.AllocationSite.getSite(AllocationSite.java:36)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.mmtk.harness.Mutator.getSiteName(Mutator.java:397)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at 
&lt;br&gt;&amp;gt; org.mmtk.harness.vm.ObjectModel.dumpObjectHeader(ObjectModel.java:747)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.mmtk.harness.vm.ObjectModel.copyTo(ObjectModel.java:422)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.mmtk.policy.MarkSwapLocal.swap(MarkSwapLocal.java:529)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at 
&lt;br&gt;&amp;gt; org.mmtk.plan.generational.markswap.GenMWMutator.collectionPhase(GenMWMutator.java:65)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.mmtk.plan.Phase.processPhaseStack(Phase.java:441)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.mmtk.plan.Phase.beginNewPhaseStack(Phase.java:351)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at 
&lt;br&gt;&amp;gt; org.mmtk.plan.StopTheWorldCollector.collect(StopTheWorldCollector.java:39)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.mmtk.harness.Collector.collect(Collector.java:275)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.mmtk.harness.Collector.run(Collector.java:172)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at 
&lt;br&gt;&amp;gt; org.mmtk.harness.scheduler.javathreads.CollectorThread.run(CollectorThread.java:35)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; DaFENG
&lt;br&gt;&amp;gt; Coder
&lt;br&gt;&amp;gt; Telecommunication &amp;&amp; Network Industry
&lt;br&gt;&amp;gt; Pudong
&lt;br&gt;&amp;gt; Shanghai
&lt;br&gt;&amp;gt; China
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;&amp;gt; Take advantage of Verizon's best-in-class app development support
&lt;br&gt;&amp;gt; A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;&amp;gt; Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Jikesrvm-core mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26882014&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-core@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-core&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-core&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Jikesrvm-core mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26882014&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-core@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-core&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-core&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-core-f3575.html&quot; embed=&quot;fixTarget[3575]&quot; target=&quot;_top&quot; &gt;jikesrvm-core&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-core--a-object-copying-related-problem-tp26852653p26882014.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26882015</id>
	<title>Re: [rvm-research] [rvm-core] a object copying related problem</title>
	<published>2009-12-21T15:56:04Z</published>
	<updated>2009-12-21T15:56:04Z</updated>
	<author>
		<name>Robin Garner</name>
	</author>
	<content type="html">Hi Da Feng,
&lt;br&gt;&lt;br&gt;Try putting a watch on object 332, ie watchObject=332.
&lt;br&gt;&lt;br&gt;You might also try watching the relevant addresses, ie
&lt;br&gt;&lt;br&gt;watchAddress=0x201AFDBC,0x201AFDC0,0x201AFDC4,0x201AFDC8,0x201AFDCC
&lt;br&gt;&lt;br&gt;and perhaps the source addresses - the MMTk harness has a 5-word object 
&lt;br&gt;header, and the allocation site is in the 2nd word after the GC header.
&lt;br&gt;&lt;br&gt;btw, I think this is a discussion better suited to the 
&lt;br&gt;jikesrvm-researchers list.
&lt;br&gt;&lt;br&gt;cheers,
&lt;br&gt;Robin
&lt;br&gt;&lt;br&gt;&lt;br&gt;Da Feng wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello:
&lt;br&gt;&amp;gt; when I copy an object to an different address, the allocation site went 
&lt;br&gt;&amp;gt; wrong.
&lt;br&gt;&amp;gt; The collector works in way similar to Gen-MarkCompact. this happens when 
&lt;br&gt;&amp;gt; compacting mature heap. Can any one give me some clue?
&lt;br&gt;&amp;gt; ============================
&lt;br&gt;&amp;gt; [Full heap][GC 7 Start 3459.95 ms &amp;nbsp; 1956KB [COLLECT] Computing roots for 
&lt;br&gt;&amp;gt; mutators
&lt;br&gt;&amp;gt; [COLLECT] mutators to scan: 1
&lt;br&gt;&amp;gt; [COLLECT] Computing roots for mutator
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040018
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20040018
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040030
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20040030
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040070
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20040070
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x200400B0
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x200400B0
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x200400F0
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x200400F0
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040130
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20040130
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040170
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20040170
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x200401B0
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x200401B0
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x200401F0
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x200401F0
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040230
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20040230
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040270
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20040270
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x8CC23E48
&lt;br&gt;&amp;gt; [COLLECT] Copying object [332@24:9] from 0x8CC23E48/nursery to 0x201AFDB8/mw
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x201AFDB8
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x201AFDB8
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x201AFDB8
&lt;br&gt;&amp;gt; [ROOTS] Locals: 13
&lt;br&gt;&amp;gt; [COLLECT] mutators to scan: 0
&lt;br&gt;&amp;gt; [COLLECT] Copying object [322@24:9] from 0x8CC0BF78/nursery to 0x201B2400/mw
&lt;br&gt;&amp;gt; [COLLECT] Copying object [323@24:9] from 0x8CC0E5C0/nursery to 0x201B4A48/mw
&lt;br&gt;&amp;gt; [COLLECT] Copying object [324@24:9] from 0x8CC10C08/nursery to 0x201B7090/mw
&lt;br&gt;&amp;gt; [COLLECT] Copying object [325@24:9] from 0x8CC13250/nursery to 0x201B96D8/mw
&lt;br&gt;&amp;gt; [COLLECT] Copying object [326@24:9] from 0x8CC15898/nursery to 0x201BBD20/mw
&lt;br&gt;&amp;gt; [COLLECT] Copying object [327@24:9] from 0x8CC17EE0/nursery to 0x201C0018/mw
&lt;br&gt;&amp;gt; [COLLECT] Copying object [328@24:9] from 0x8CC1A528/nursery to 0x201C2660/mw
&lt;br&gt;&amp;gt; [COLLECT] Copying object [329@24:9] from 0x8CC1CB70/nursery to 0x201C4CA8/mw
&lt;br&gt;&amp;gt; [COLLECT] Copying object [330@24:9] from 0x8CC1F1B8/nursery to 0x201C72F0/mw
&lt;br&gt;&amp;gt; [COLLECT] Copying object [331@24:9] from 0x8CC21800/nursery to 0x201C9938/mw
&lt;br&gt;&amp;gt; [COLLECT] Computing roots for mutators
&lt;br&gt;&amp;gt; [COLLECT] mutators to scan: 1
&lt;br&gt;&amp;gt; [COLLECT] Computing roots for mutator
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040018
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20002660
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040030
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20002678
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040070
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x200026B8
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x200400B0
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x200026F8
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x200400F0
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20002738
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040130
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20002778
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040170
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x200027B8
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x200401B0
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x200027F8
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x200401F0
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20002838
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040230
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20002878
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20040270
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x200028B8
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x201AFDB8
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20000018
&lt;br&gt;&amp;gt; [ROOTS] Tracing root 0x20000018
&lt;br&gt;&amp;gt; [ROOTS] new value of 0x20000018
&lt;br&gt;&amp;gt; [ROOTS] Locals: 13
&lt;br&gt;&amp;gt; [COLLECT] mutators to scan: 0
&lt;br&gt;&amp;gt; [COLLECT] Copying object [332@24:9] from 0x201AFDB8/mw to 0x20000018/mw
&lt;br&gt;&amp;gt; Object 0x201AFDB8[332@24:9]&amp;lt;530,20000018&amp;gt;
&lt;br&gt;&amp;gt; java.lang.IndexOutOfBoundsException: Index: 2444, Size: 12
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at java.util.ArrayList.RangeCheck(ArrayList.java:547)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at java.util.ArrayList.get(ArrayList.java:322)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at 
&lt;br&gt;&amp;gt; org.mmtk.harness.lang.runtime.AllocationSite.getSite(AllocationSite.java:36)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.mmtk.harness.Mutator.getSiteName(Mutator.java:397)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at 
&lt;br&gt;&amp;gt; org.mmtk.harness.vm.ObjectModel.dumpObjectHeader(ObjectModel.java:747)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.mmtk.harness.vm.ObjectModel.copyTo(ObjectModel.java:422)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.mmtk.policy.MarkSwapLocal.swap(MarkSwapLocal.java:529)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at 
&lt;br&gt;&amp;gt; org.mmtk.plan.generational.markswap.GenMWMutator.collectionPhase(GenMWMutator.java:65)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.mmtk.plan.Phase.processPhaseStack(Phase.java:441)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.mmtk.plan.Phase.beginNewPhaseStack(Phase.java:351)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at 
&lt;br&gt;&amp;gt; org.mmtk.plan.StopTheWorldCollector.collect(StopTheWorldCollector.java:39)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.mmtk.harness.Collector.collect(Collector.java:275)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at org.mmtk.harness.Collector.run(Collector.java:172)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; at 
&lt;br&gt;&amp;gt; org.mmtk.harness.scheduler.javathreads.CollectorThread.run(CollectorThread.java:35)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; DaFENG
&lt;br&gt;&amp;gt; Coder
&lt;br&gt;&amp;gt; Telecommunication &amp;&amp; Network Industry
&lt;br&gt;&amp;gt; Pudong
&lt;br&gt;&amp;gt; Shanghai
&lt;br&gt;&amp;gt; China
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;&amp;gt; Take advantage of Verizon's best-in-class app development support
&lt;br&gt;&amp;gt; A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;&amp;gt; Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Jikesrvm-core mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26882015&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-core@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-core&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-core&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Jikesrvm-researchers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26882015&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-researchers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-researchers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-researchers&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-researchers-f3577.html&quot; embed=&quot;fixTarget[3577]&quot; target=&quot;_top&quot; &gt;jikesrvm-researchers&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--rvm-research---rvm-core--a-object-copying-related-problem-tp26882015p26882015.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26880698</id>
	<title>[rvm-regress] [perf.12479] SUCCESS</title>
	<published>2009-12-21T13:57:50Z</published>
	<updated>2009-12-21T13:57:50Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for perf (r15804) on habanero.anu.edu.au, Mon Dec 21 17:05:26 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12479/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12479/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;


 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12479/performance_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Performance Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12444&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12444 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12449&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12449 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12451&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12451 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12454&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12454 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12457&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12457 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12464&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12464 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12466&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12466 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12471&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12471 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12474&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12474 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12479&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12479 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 0/436 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;0 new failures this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;8 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;0 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;21/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;br /&gt;17:05&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;436/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;436/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;436/436&lt;/td&gt;
    
  &lt;/tr&gt;
  
&lt;/table&gt;





&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;21/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;br /&gt;17:05&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;jess-3GC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;lusearch-10&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;lusearch-3GC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;xalan-1&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26880698&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---perf.12479--SUCCESS-tp26880698p26880698.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26878695</id>
	<title>[rvm-regress] [sanity-tier2.12478] 79 FAILURES</title>
	<published>2009-12-21T11:17:28Z</published>
	<updated>2009-12-21T11:17:28Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for sanity-tier2 (r15804) on jalapeno.anu.edu.au, Mon Dec 21 17:13:00 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12478/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12478/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12351&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12351 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12363&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12363 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12378&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12378 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12392&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12392 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12407&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12407 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12421&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12421 (r15801)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12435&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12435 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12448&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12448 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12462&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12462 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12478&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12478 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 79/312 (25%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;2 new failures this run&lt;/h3&gt;

&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;FastAdaptiveStickyImmix&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;dacapo&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;fop&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;OVERTIME&lt;/td&gt;
    &lt;td&gt;&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12478/FastAdaptiveStickyImmix/default/dacapo/fop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Details&lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;FastAdaptiveStickyImmix&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;SPECjvm98&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;_228_jack&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;OVERTIME&lt;/td&gt;
    &lt;td&gt;&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12478/FastAdaptiveStickyImmix/default/SPECjvm98/_228_jack&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Details&lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;

&lt;/table&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;16 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;73 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;234/312&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;234/312&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;236/312&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;235/312&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;235/312&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;232/312&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;231/312&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;234/312&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;234/312&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;233/312&lt;/td&gt;
    
  &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Build Configuration By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;BaseBaseMarkCompact&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveMarkCompact&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;FastAdaptiveStickyImmix&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;95%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;95%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;97%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;95%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;95%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;bloat&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2000&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;luindex&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;lusearch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;jBYTEmark&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;jython&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;_228_jack&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;chart&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dom.Counter&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;fop&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;hsqldb&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Ipsixql&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;pmd&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;soot.Main&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;tInstance&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;_200_check&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;_201_compress&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;_202_jess&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;_209_db&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;_213_javac&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;_222_mpegaudio&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;_227_mtrt&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;antlr&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;CaffeineMark&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;JLex.Main&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;RVM_708&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;sax.Counter&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;t3GT3&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;tClass&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestBackEdgeGC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;TestDispatch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestGC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;TestNestedGC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestParallelHardwareTrap&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26878695&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---sanity-tier2.12478--79-FAILURES-tp26878695p26878695.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26877195</id>
	<title>[rvm-regress] [sanity.12477] 3 FAILURES</title>
	<published>2009-12-21T09:27:35Z</published>
	<updated>2009-12-21T09:27:35Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for sanity (r15804) on jalapeno.anu.edu.au, Mon Dec 21 11:00:49 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12477/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12477/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12349&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12349 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12361&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12361 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12377&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12377 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12390&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12390 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12405&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12405 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12418&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12418 (r15801)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12433&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12433 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12446&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12446 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12460&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12460 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12477&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12477 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 3/2240 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;0 new failures this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;19 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;0 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2237/2240&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2237/2240&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2235/2240&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2239/2240&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2237/2240&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2238/2240&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2235/2240&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2235/2240&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2239/2240&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2237/2240&lt;/td&gt;
    
  &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: antlr&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;2020&quot;&gt;2020 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;1957&quot;&gt;1957 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;1938&quot;&gt;1938 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;1959&quot;&gt;1959 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;1940&quot;&gt;1940 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;1999&quot;&gt;1999 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;1931&quot;&gt;1931&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;1924&quot;&gt;1924&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;1961&quot;&gt;1961 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;2016&quot;&gt;2016 (+5%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: bloat&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7059&quot;&gt;7059 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6974&quot;&gt;6974 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7011&quot;&gt;7011 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7075&quot;&gt;7075 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6826&quot;&gt;6826&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7137&quot;&gt;7137 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6945&quot;&gt;6945 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;6880&quot;&gt;6880 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7044&quot;&gt;7044 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6940&quot;&gt;6940 (+2%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: chart&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;8143&quot;&gt;8143 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8185&quot;&gt;8185 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8171&quot;&gt;8171 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;8074&quot;&gt;8074&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8225&quot;&gt;8225 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8202&quot;&gt;8202 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8179&quot;&gt;8179 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;8127&quot;&gt;8127 (+0%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8162&quot;&gt;8162 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8153&quot;&gt;8153 (+1%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;28098&quot;&gt;28098 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;27550&quot;&gt;27550&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;28529&quot;&gt;28529 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;28457&quot;&gt;28457 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;28905&quot;&gt;28905 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;28397&quot;&gt;28397 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;27791&quot;&gt;27791&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;29041&quot;&gt;29041 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;27883&quot;&gt;27883 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;28084&quot;&gt;28084 (+2%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: fop&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;2386&quot;&gt;2386 (+18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;2047&quot;&gt;2047&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;2371&quot;&gt;2371 (+17%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;2379&quot;&gt;2379 (+18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;2050&quot;&gt;2050&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;2401&quot;&gt;2401 (+19%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;2408&quot;&gt;2408 (+19%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;2380&quot;&gt;2380 (+18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;2034&quot;&gt;2034&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;2067&quot;&gt;2067&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: hsqldb&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3045&quot;&gt;3045 (+12%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;2881&quot;&gt;2881 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;2856&quot;&gt;2856 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;2876&quot;&gt;2876 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;2947&quot;&gt;2947 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3010&quot;&gt;3010 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;2972&quot;&gt;2972 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;2995&quot;&gt;2995 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;2924&quot;&gt;2924 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;2956&quot;&gt;2956 (+8%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: jython&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6505&quot;&gt;6505 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6589&quot;&gt;6589 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6523&quot;&gt;6523 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6570&quot;&gt;6570 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6589&quot;&gt;6589 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6547&quot;&gt;6547 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6628&quot;&gt;6628 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6660&quot;&gt;6660 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6665&quot;&gt;6665 (+4%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: luindex&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7943&quot;&gt;7943 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7626&quot;&gt;7626&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7865&quot;&gt;7865 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7937&quot;&gt;7937 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;7847&quot;&gt;7847 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7944&quot;&gt;7944 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7863&quot;&gt;7863 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;7752&quot;&gt;7752 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7644&quot;&gt;7644&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;7785&quot;&gt;7785 (+2%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: lusearch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3463&quot;&gt;3463 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3674&quot;&gt;3674 (+17%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3576&quot;&gt;3576 (+14%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3665&quot;&gt;3665 (+17%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3782&quot;&gt;3782 (+21%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3622&quot;&gt;3622 (+16%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3514&quot;&gt;3514 (+12%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3604&quot;&gt;3604 (+15%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3733&quot;&gt;3733 (+19%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3938&quot;&gt;3938 (+26%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: pmd&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4682&quot;&gt;4682&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4915&quot;&gt;4915 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4986&quot;&gt;4986 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5035&quot;&gt;5035 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4853&quot;&gt;4853 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4865&quot;&gt;4865 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5089&quot;&gt;5089 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4941&quot;&gt;4941 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5016&quot;&gt;5016 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4683&quot;&gt;4683&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;3673&quot;&gt;3673 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3729&quot;&gt;3729 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3728&quot;&gt;3728 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3749&quot;&gt;3749 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3809&quot;&gt;3809 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3816&quot;&gt;3816 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3787&quot;&gt;3787 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3789&quot;&gt;3789 (+5%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2000&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;95283&quot;&gt;95283&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;94066&quot;&gt;94066&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;63127&quot;&gt;63127 (-34%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;94961&quot;&gt;94961&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;94820&quot;&gt;94820&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;95082&quot;&gt;95082&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;62697&quot;&gt;62697 (-34%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;94800&quot;&gt;94800&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;95452&quot;&gt;95452&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;95312&quot;&gt;95312&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;13495&quot;&gt;13495 (-5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13374&quot;&gt;13374 (-5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;12522&quot;&gt;12522 (-11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13100&quot;&gt;13100 (-7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;13622&quot;&gt;13622 (-4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13006&quot;&gt;13006 (-8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13191&quot;&gt;13191 (-7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13346&quot;&gt;13346 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13151&quot;&gt;13151 (-7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13445&quot;&gt;13445 (-5%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjvm98&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;359.17&quot;&gt;359.17 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;358.25&quot;&gt;358.25 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;357.96&quot;&gt;357.96 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;357.34&quot;&gt;357.34 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;354.71&quot;&gt;354.71 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;356.79&quot;&gt;356.79 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;358.65&quot;&gt;358.65 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;358.54&quot;&gt;358.54 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;359.7&quot;&gt;359.7 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;361.22&quot;&gt;361.22 (-0%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Build Configuration By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;FastAdaptiveSemiSpace&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptivePoisoned&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;production&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveStickyMS&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;BaseBaseSemiSpace&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveCopyMS&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;BaseBaseGenCopy&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;BaseBaseMarkSweep&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;FullAdaptiveGenCopy&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveGenImmix&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;prototype&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;prototype-opt&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;AtomicLongArrayTest&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;81%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;81%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;ReferenceStress&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Exhaust&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Ipsixql&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;jython&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26877195&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---sanity.12477--3-FAILURES-tp26877195p26877195.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26877102</id>
	<title>[rvm-regress] [core-ppc32.12476] 2 FAILURES</title>
	<published>2009-12-21T09:20:03Z</published>
	<updated>2009-12-21T09:20:03Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for core-ppc32 (r15804) on piano.watson.ibm.com, Mon Dec 21 13:00:43 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12476/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12476/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12334&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12334 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12348&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12348 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12360&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12360 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12376&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12376 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12389&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12389 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12404&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12404 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12419&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12419 (r15803)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12432&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12432 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12459&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12459 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12476&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12476 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 2/660 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;1 new failures this run&lt;/h3&gt;

&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;development&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;Opt_1&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;gctest&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;Exhaust&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;OVERTIME&lt;/td&gt;
    &lt;td&gt;&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12476/development/Opt_1/gctest/Exhaust&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Details&lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;

&lt;/table&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;5 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;0 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;659/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;660/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;660/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;660/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;660/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;659/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;659/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;658/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;660/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;658/660&lt;/td&gt;
    
  &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: antlr&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5472&quot;&gt;5472 (+29%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9503&quot;&gt;9503 (+124%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;5296&quot;&gt;5296&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4884&quot;&gt;4884&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;6254&quot;&gt;6254 (+47%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;5329&quot;&gt;5329&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4879&quot;&gt;4879&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4962&quot;&gt;4962&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4886&quot;&gt;4886&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4520&quot;&gt;4520&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: bloat&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12888&quot;&gt;12888 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12868&quot;&gt;12868 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;12515&quot;&gt;12515&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12771&quot;&gt;12771 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12767&quot;&gt;12767 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14861&quot;&gt;14861 (+23%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;13853&quot;&gt;13853 (+15%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;12603&quot;&gt;12603&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12931&quot;&gt;12931 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;12209&quot;&gt;12209&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;61546&quot;&gt;61546 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;62696&quot;&gt;62696 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;63433&quot;&gt;63433 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;60162&quot;&gt;60162&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;59545&quot;&gt;59545&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;59710&quot;&gt;59710&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;63736&quot;&gt;63736 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;60461&quot;&gt;60461&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;61667&quot;&gt;61667 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;59942&quot;&gt;59942&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: fop&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;5578&quot;&gt;5578&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5632&quot;&gt;5632 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5677&quot;&gt;5677 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5624&quot;&gt;5624 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5594&quot;&gt;5594 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5609&quot;&gt;5609 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6046&quot;&gt;6046 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5586&quot;&gt;5586 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5636&quot;&gt;5636 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5653&quot;&gt;5653 (+3%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: hsqldb&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6141&quot;&gt;6141 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6325&quot;&gt;6325 (+14%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6077&quot;&gt;6077 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;5836&quot;&gt;5836 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;5880&quot;&gt;5880 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6141&quot;&gt;6141 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6495&quot;&gt;6495 (+17%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6246&quot;&gt;6246 (+13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6073&quot;&gt;6073 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6032&quot;&gt;6032 (+9%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: jython&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;15812&quot;&gt;15812 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16691&quot;&gt;16691 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;15602&quot;&gt;15602&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;15221&quot;&gt;15221&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;15518&quot;&gt;15518&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;15802&quot;&gt;15802 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16779&quot;&gt;16779 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;15267&quot;&gt;15267&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;15396&quot;&gt;15396&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;15570&quot;&gt;15570&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: luindex&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;14428&quot;&gt;14428&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;15852&quot;&gt;15852 (+12%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;14451&quot;&gt;14451&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;15169&quot;&gt;15169 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16722&quot;&gt;16722 (+18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;14491&quot;&gt;14491&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;16132&quot;&gt;16132 (+14%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;14437&quot;&gt;14437&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;14589&quot;&gt;14589&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;14602&quot;&gt;14602&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: lusearch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7902&quot;&gt;7902&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;10719&quot;&gt;10719 (+74%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8659&quot;&gt;8659 (+41%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6805&quot;&gt;6805&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7785&quot;&gt;7785&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8519&quot;&gt;8519 (+39%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14628&quot;&gt;14628 (+138%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7796&quot;&gt;7796&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7949&quot;&gt;7949&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7279&quot;&gt;7279&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: pmd&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9207&quot;&gt;9207&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10282&quot;&gt;10282 (+13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9291&quot;&gt;9291&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9241&quot;&gt;9241&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9473&quot;&gt;9473 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9354&quot;&gt;9354&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10330&quot;&gt;10330 (+14%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9243&quot;&gt;9243&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9231&quot;&gt;9231&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9423&quot;&gt;9423 (+4%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9665&quot;&gt;9665 (+33%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;12665&quot;&gt;12665 (+75%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9952&quot;&gt;9952 (+37%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7443&quot;&gt;7443&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9161&quot;&gt;9161&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9589&quot;&gt;9589 (+32%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16573&quot;&gt;16573 (+129%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9470&quot;&gt;9470 (+31%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;8879&quot;&gt;8879&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7438&quot;&gt;7438&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjbb2000&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;27185&quot;&gt;27185 (-48%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;51832&quot;&gt;51832&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;34122&quot;&gt;34122 (-35%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;32358&quot;&gt;32358 (-38%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;40497&quot;&gt;40497 (-23%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;40188&quot;&gt;40188 (-23%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;51765&quot;&gt;51765&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7216&quot;&gt;7216 (-21%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;7485&quot;&gt;7485 (-18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;7484&quot;&gt;7484 (-18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8495&quot;&gt;8495 (-7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6486&quot;&gt;6486 (-29%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7081&quot;&gt;7081 (-22%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7300&quot;&gt;7300 (-20%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8175&quot;&gt;8175 (-10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8068&quot;&gt;8068 (-12%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;8762&quot;&gt;8762&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjvm98&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;223.85&quot;&gt;223.85 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;216.37&quot;&gt;216.37 (-5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;222.28&quot;&gt;222.28 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;222.51&quot;&gt;222.51 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;222.67&quot;&gt;222.67 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;223.74&quot;&gt;223.74 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;220.16&quot;&gt;220.16 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;221.42&quot;&gt;221.42 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;221.16&quot;&gt;221.16 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;224.68&quot;&gt;224.68 (-1%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Build Configuration By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;prototype-opt&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;production&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;Exhaust&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;ReferenceStress&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;ReferenceTest&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestTimedWait&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26877102&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---core-ppc32.12476--2-FAILURES-tp26877102p26877102.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26876251</id>
	<title>[rvm-regress] [sanity.12475] 1 FAILURE</title>
	<published>2009-12-21T08:20:40Z</published>
	<updated>2009-12-21T08:20:40Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for sanity (r15804) on paprika.anu.edu.au, Mon Dec 21 06:47:00 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12475/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12475/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12347&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12347 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12359&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12359 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12375&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12375 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12388&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12388 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12403&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12403 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12417&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12417 (r15801)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12431&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12431 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12445&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12445 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12458&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12458 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12475&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12475 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 1/2224 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;0 new failures this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;9 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;1 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2222/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2220/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2223/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2221/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2222/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2222/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2223/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2220/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2222/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2223/2224&lt;/td&gt;
    
  &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: antlr&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3691&quot;&gt;3691 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;3611&quot;&gt;3611 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;3642&quot;&gt;3642 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3721&quot;&gt;3721 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3762&quot;&gt;3762 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3745&quot;&gt;3745 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;3591&quot;&gt;3591 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3667&quot;&gt;3667 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;3635&quot;&gt;3635 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;3577&quot;&gt;3577 (+2%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: bloat&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10016&quot;&gt;10016 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10181&quot;&gt;10181 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9983&quot;&gt;9983 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9904&quot;&gt;9904 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9739&quot;&gt;9739 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9782&quot;&gt;9782 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9720&quot;&gt;9720 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9716&quot;&gt;9716 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9771&quot;&gt;9771 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9691&quot;&gt;9691 (+2%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;72000&quot;&gt;72000 (+17%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;71511&quot;&gt;71511 (+16%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;66735&quot;&gt;66735 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;71869&quot;&gt;71869 (+17%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;65369&quot;&gt;65369 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;69431&quot;&gt;69431 (+13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;70049&quot;&gt;70049 (+14%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;70818&quot;&gt;70818 (+15%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;70062&quot;&gt;70062 (+14%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;70205&quot;&gt;70205 (+14%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: fop&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4129&quot;&gt;4129&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4150&quot;&gt;4150 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4229&quot;&gt;4229 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4266&quot;&gt;4266 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4156&quot;&gt;4156 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4346&quot;&gt;4346 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4163&quot;&gt;4163 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4156&quot;&gt;4156 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4175&quot;&gt;4175 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4325&quot;&gt;4325 (+6%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: hsqldb&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4335&quot;&gt;4335 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4377&quot;&gt;4377 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4402&quot;&gt;4402 (+12%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green; font-weight: bold;&quot; title=&quot;3911&quot;&gt;3911&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4274&quot;&gt;4274 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4263&quot;&gt;4263 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4637&quot;&gt;4637 (+18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4398&quot;&gt;4398 (+12%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4358&quot;&gt;4358 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4212&quot;&gt;4212 (+7%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: jython&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9330&quot;&gt;9330 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9321&quot;&gt;9321 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8941&quot;&gt;8941 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9050&quot;&gt;9050 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8950&quot;&gt;8950 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9094&quot;&gt;9094 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8947&quot;&gt;8947 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9343&quot;&gt;9343 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9210&quot;&gt;9210 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8952&quot;&gt;8952 (+2%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: luindex&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;12277&quot;&gt;12277&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;12346&quot;&gt;12346&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;20368&quot;&gt;20368 (+68%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;21759&quot;&gt;21759 (+80%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;17786&quot;&gt;17786 (+47%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;18894&quot;&gt;18894 (+56%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;12294&quot;&gt;12294&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;21046&quot;&gt;21046 (+74%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;21607&quot;&gt;21607 (+78%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;22705&quot;&gt;22705 (+88%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: lusearch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10321&quot;&gt;10321 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10352&quot;&gt;10352 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10154&quot;&gt;10154 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9863&quot;&gt;9863 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9802&quot;&gt;9802 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10136&quot;&gt;10136 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10954&quot;&gt;10954 (+17%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10346&quot;&gt;10346 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9974&quot;&gt;9974 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;10025&quot;&gt;10025 (+7%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: pmd&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8626&quot;&gt;8626 (+28%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;7308&quot;&gt;7308 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6821&quot;&gt;6821&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7045&quot;&gt;7045&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6979&quot;&gt;6979&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;7208&quot;&gt;7208 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;7498&quot;&gt;7498 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6972&quot;&gt;6972&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6945&quot;&gt;6945&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6757&quot;&gt;6757&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9482&quot;&gt;9482&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9580&quot;&gt;9580 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9591&quot;&gt;9591 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10319&quot;&gt;10319 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10213&quot;&gt;10213 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9729&quot;&gt;9729 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9875&quot;&gt;9875 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9473&quot;&gt;9473&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10265&quot;&gt;10265 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9428&quot;&gt;9428&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjbb2000&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;38330&quot;&gt;38330 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;39071&quot;&gt;39071 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;38619&quot;&gt;38619 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;38516&quot;&gt;38516 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;38497&quot;&gt;38497 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;38863&quot;&gt;38863 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;38956&quot;&gt;38956 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;38201&quot;&gt;38201 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;38566&quot;&gt;38566 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;38396&quot;&gt;38396 (-3%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9556&quot;&gt;9556 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9236&quot;&gt;9236 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9808&quot;&gt;9808&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9046&quot;&gt;9046 (-8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9546&quot;&gt;9546 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9758&quot;&gt;9758&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9237&quot;&gt;9237 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9209&quot;&gt;9209 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8792&quot;&gt;8792 (-10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9143&quot;&gt;9143 (-7%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjvm98&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;243.06&quot;&gt;243.06 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;241.27&quot;&gt;241.27 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;244.71&quot;&gt;244.71 (-0%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;244.4&quot;&gt;244.4 (-0%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;239.47&quot;&gt;239.47 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;243.08&quot;&gt;243.08 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;238.27&quot;&gt;238.27 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;240.17&quot;&gt;240.17 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;239.61&quot;&gt;239.61 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;240.92&quot;&gt;240.92 (-2%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Build Configuration By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;FastAdaptiveSemiSpace&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptivePoisoned&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;FullAdaptiveStickyMS&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveImmix&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;BaseBaseMarkSweep&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;BaseBasePoisoned&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;Exhaust&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;ReferenceStress&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;bloat&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestStop&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26876251&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---sanity.12475--1-FAILURE-tp26876251p26876251.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26875921</id>
	<title>[rvm-regress] [perf.12474] 2 FAILURES</title>
	<published>2009-12-21T07:57:44Z</published>
	<updated>2009-12-21T07:57:44Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for perf (r15804) on habanero.anu.edu.au, Mon Dec 21 11:05:11 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12474/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12474/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;


 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12474/performance_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Performance Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12441&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12441 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12444&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12444 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12449&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12449 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12451&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12451 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12454&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12454 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12457&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12457 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12464&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12464 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12466&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12466 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12471&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12471 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12474&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12474 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 2/436 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;1 new failures this run&lt;/h3&gt;

&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;production&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;perf-dacapo&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;lusearch-10&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;FAILURE&lt;/td&gt;
    &lt;td&gt;&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12474/production/default/perf-dacapo/lusearch-10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Details&lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;

&lt;/table&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;8 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;0 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;21/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;br /&gt;11:05&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;436/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;436/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
  &lt;/tr&gt;
  
&lt;/table&gt;





&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;21/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;br /&gt;11:05&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;jess-3GC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;lusearch-10&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;lusearch-3GC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;xalan-1&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26875921&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---perf.12474--2-FAILURES-tp26875921p26875921.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26873965</id>
	<title>[rvm-regress] [core-ppc32.12473] 2 FAILURES</title>
	<published>2009-12-21T05:28:23Z</published>
	<updated>2009-12-21T05:28:23Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for core-ppc32 (r15804) on piccolo.watson.ibm.com, Mon Dec 21 07:10:07 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/12473/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/12473/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/11554&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.11554 (r15788)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/11569&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.11569 (r15788)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/11584&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.11584 (r15788)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/11599&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.11599 (r15788)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/11800&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.11800 (r15792)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/11816&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.11816 (r15792)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/11873&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.11873 (r15792)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/11888&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.11888 (r15792)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/12456&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12456 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/12473&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12473 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 2/660 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;0 new failures this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;14 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;0 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;22/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;23/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;06/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;07/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;12/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;660/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;658/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;659/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;658/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;652/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;632/634&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;656/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;659/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;657/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;658/660&lt;/td&gt;
    
  &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: antlr&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;26496&quot;&gt;26496&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;26294&quot;&gt;26294&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;27442&quot;&gt;27442&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;26145&quot;&gt;26145&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;26449&quot;&gt;26449&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;31923&quot;&gt;31923 (+23%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;26319&quot;&gt;26319&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;32632&quot;&gt;32632 (+25%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;26056&quot;&gt;26056&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green; font-weight: bold;&quot; title=&quot;25924&quot;&gt;25924&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: bloat&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13315&quot;&gt;13315 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13058&quot;&gt;13058 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;12986&quot;&gt;12986 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13080&quot;&gt;13080 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;12818&quot;&gt;12818 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12638&quot;&gt;12638 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12626&quot;&gt;12626 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12612&quot;&gt;12612 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12572&quot;&gt;12572 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;12470&quot;&gt;12470&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;144867&quot;&gt;144867&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;252114&quot;&gt;252114 (+110%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;136361&quot;&gt;136361&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;183368&quot;&gt;183368 (+52%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;179554&quot;&gt;179554 (+49%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;133191&quot;&gt;133191&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;139676&quot;&gt;139676&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;138732&quot;&gt;138732&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;168911&quot;&gt;168911 (+40%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;121748&quot;&gt;121748&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: fop&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4632&quot;&gt;4632 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4640&quot;&gt;4640 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4595&quot;&gt;4595 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4611&quot;&gt;4611 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4631&quot;&gt;4631 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4673&quot;&gt;4673 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4566&quot;&gt;4566 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4577&quot;&gt;4577 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4626&quot;&gt;4626 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4638&quot;&gt;4638 (+3%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: hsqldb&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5660&quot;&gt;5660 (+14%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5626&quot;&gt;5626 (+13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5152&quot;&gt;5152 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5742&quot;&gt;5742 (+16%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5705&quot;&gt;5705 (+15%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5228&quot;&gt;5228 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5252&quot;&gt;5252 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;5398&quot;&gt;5398 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5590&quot;&gt;5590 (+13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5606&quot;&gt;5606 (+13%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: jython&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14617&quot;&gt;14617 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14607&quot;&gt;14607 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14623&quot;&gt;14623 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14670&quot;&gt;14670 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14732&quot;&gt;14732 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14838&quot;&gt;14838 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14597&quot;&gt;14597 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14537&quot;&gt;14537 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14687&quot;&gt;14687 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14735&quot;&gt;14735 (+4%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: luindex&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;49098&quot;&gt;49098&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;60196&quot;&gt;60196 (+25%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;57142&quot;&gt;57142 (+19%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;57023&quot;&gt;57023 (+18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;57313&quot;&gt;57313 (+19%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;59969&quot;&gt;59969 (+24%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;48853&quot;&gt;48853&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;59183&quot;&gt;59183 (+23%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;60123&quot;&gt;60123 (+25%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;58516&quot;&gt;58516 (+21%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: lusearch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6713&quot;&gt;6713 (+20%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6919&quot;&gt;6919 (+24%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6824&quot;&gt;6824 (+22%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6487&quot;&gt;6487 (+16%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6621&quot;&gt;6621 (+18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7453&quot;&gt;7453 (+33%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6810&quot;&gt;6810 (+22%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6645&quot;&gt;6645 (+19%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6954&quot;&gt;6954 (+24%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6744&quot;&gt;6744 (+21%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: pmd&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;8950&quot;&gt;8950 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9444&quot;&gt;9444 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9087&quot;&gt;9087 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9172&quot;&gt;9172 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9049&quot;&gt;9049 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9243&quot;&gt;9243 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9314&quot;&gt;9314 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9055&quot;&gt;9055 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9147&quot;&gt;9147 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9010&quot;&gt;9010 (+3%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8256&quot;&gt;8256 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8266&quot;&gt;8266 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8384&quot;&gt;8384 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;8096&quot;&gt;8096 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8597&quot;&gt;8597 (+13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;7795&quot;&gt;7795 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8450&quot;&gt;8450 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8239&quot;&gt;8239 (+9%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjbb2000&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;44967&quot;&gt;44967&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;46278&quot;&gt;46278&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;45260&quot;&gt;45260&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;46870&quot;&gt;46870&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;45126&quot;&gt;45126&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;46437&quot;&gt;46437&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;46666&quot;&gt;46666&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;44648&quot;&gt;44648&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;46964&quot;&gt;46964&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;19941&quot;&gt;19941 (-58%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4524&quot;&gt;4524 (-0%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4498&quot;&gt;4498 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4435&quot;&gt;4435 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4556&quot;&gt;4556&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4528&quot;&gt;4528 (-0%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4491&quot;&gt;4491 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4499&quot;&gt;4499 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4550&quot;&gt;4550&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4514&quot;&gt;4514 (-1%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjvm98&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;206.15&quot;&gt;206.15 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;207.7&quot;&gt;207.7 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;207.84&quot;&gt;207.84 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;208.35&quot;&gt;208.35 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;210.8&quot;&gt;210.8&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;210.69&quot;&gt;210.69&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;207.94&quot;&gt;207.94 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;207.55&quot;&gt;207.55 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;204.56&quot;&gt;204.56 (-3%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Build Configuration By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;22/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;23/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;06/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;07/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;12/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;prototype-opt&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;97%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;prototype&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;development&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;production&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;22/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;23/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;06/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;07/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;12/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestParallelHardwareTrap&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;50%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;25%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjvm98&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Exhaust&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;80%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestTimedWait&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26873965&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---core-ppc32.12473--2-FAILURES-tp26873965p26873965.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26873070</id>
	<title>[rvm-regress] [sanity-harmony.12472] 196 FAILURES</title>
	<published>2009-12-21T04:01:00Z</published>
	<updated>2009-12-21T04:01:00Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for sanity-harmony (r15804) on cayenne.anu.edu.au, Sun Dec 20 23:30:40 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12472/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12472/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12345&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12345 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12357&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12357 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12373&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12373 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12386&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12386 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12401&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12401 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12415&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12415 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12429&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12429 (r15803)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12443&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12443 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12455&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12455 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12472&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12472 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 196/2196 (8%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;0 new failures this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;44 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;181 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;1999/2196&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2001/2196&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;1998/2196&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;1997/2196&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;1997/2196&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;1995/2196&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2001/2196&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2000/2196&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2004/2196&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2000/2196&lt;/td&gt;
    
  &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: antlr&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4071&quot;&gt;4071&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;5922&quot;&gt;5922 (+54%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;3937&quot;&gt;3937&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6943&quot;&gt;6943 (+81%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6752&quot;&gt;6752 (+76%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4531&quot;&gt;4531&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6008&quot;&gt;6008 (+56%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4183&quot;&gt;4183&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4435&quot;&gt;4435&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4817&quot;&gt;4817 (+25%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;77106&quot;&gt;77106 (+24%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;65754&quot;&gt;65754&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: fop&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6977&quot;&gt;6977 (+52%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4753&quot;&gt;4753&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;5130&quot;&gt;5130&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6660&quot;&gt;6660 (+45%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6168&quot;&gt;6168 (+34%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6795&quot;&gt;6795 (+48%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6329&quot;&gt;6329 (+38%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7338&quot;&gt;7338 (+60%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5990&quot;&gt;5990 (+31%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4904&quot;&gt;4904&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: hsqldb&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;7032&quot;&gt;7032 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;7103&quot;&gt;7103 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7220&quot;&gt;7220 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;7151&quot;&gt;7151 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;6929&quot;&gt;6929 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7373&quot;&gt;7373 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7191&quot;&gt;7191 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7677&quot;&gt;7677 (+15%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;7050&quot;&gt;7050 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7332&quot;&gt;7332 (+10%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: luindex&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;18212&quot;&gt;18212 (+13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;18066&quot;&gt;18066 (+12%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;18094&quot;&gt;18094 (+12%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;18150&quot;&gt;18150 (+13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;18488&quot;&gt;18488 (+15%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;18311&quot;&gt;18311 (+14%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17910&quot;&gt;17910 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;18491&quot;&gt;18491 (+15%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17844&quot;&gt;17844 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;18045&quot;&gt;18045 (+12%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: lusearch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;15903&quot;&gt;15903 (+14%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;14514&quot;&gt;14514 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;15865&quot;&gt;15865 (+14%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;15422&quot;&gt;15422 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;15269&quot;&gt;15269 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16385&quot;&gt;16385 (+17%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;15471&quot;&gt;15471 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;15674&quot;&gt;15674 (+12%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;15700&quot;&gt;15700 (+13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16067&quot;&gt;16067 (+15%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: pmd&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;12960&quot;&gt;12960 (+37%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13168&quot;&gt;13168 (+40%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13226&quot;&gt;13226 (+40%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13248&quot;&gt;13248 (+41%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13455&quot;&gt;13455 (+43%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;12834&quot;&gt;12834 (+36%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;12998&quot;&gt;12998 (+38%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13247&quot;&gt;13247 (+41%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13137&quot;&gt;13137 (+39%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;12978&quot;&gt;12978 (+38%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;32188&quot;&gt;32188 (+120%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjbb2000&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;26309&quot;&gt;26309 (-7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;26665&quot;&gt;26665 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;26921&quot;&gt;26921 (-5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;26400&quot;&gt;26400 (-7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;26744&quot;&gt;26744 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;26655&quot;&gt;26655 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;27244&quot;&gt;27244 (-4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;27029&quot;&gt;27029 (-5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;26819&quot;&gt;26819 (-5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;27066&quot;&gt;27066 (-5%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9137&quot;&gt;9137 (-9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9082&quot;&gt;9082 (-10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9238&quot;&gt;9238 (-8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8993&quot;&gt;8993 (-11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9026&quot;&gt;9026 (-10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9116&quot;&gt;9116 (-9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9251&quot;&gt;9251 (-8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9143&quot;&gt;9143 (-9%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjvm98&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;183.17&quot;&gt;183.17 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;175.95&quot;&gt;175.95 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;175.39&quot;&gt;175.39 (-7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;180.12&quot;&gt;180.12 (-4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;184.18&quot;&gt;184.18 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;179.15&quot;&gt;179.15 (-5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;185.44&quot;&gt;185.44&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;180.8&quot;&gt;180.8 (-4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;169.41&quot;&gt;169.41 (-10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;168.8&quot;&gt;168.8 (-10%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Build Configuration By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;prototype-opt&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveStickyMS&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;FullAdaptiveCopyMS&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveMarkSweep&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;BaseBaseMarkSweep&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptivePoisoned&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;FullAdaptiveGenCopy&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveGenImmix&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;BaseBaseSemiSpace&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;BaseBasePoisoned&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;BaseBaseCopyMS&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveImmix&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;89%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;90%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;production&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;91%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;BaseBaseGenCopy&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;FullAdaptiveRefCount&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;development&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;BaseBaseGenRC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;BaseBaseRefCount&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveGenRC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;prototype&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FastAdaptiveSemiSpace&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;chart&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;jython&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;StringRegion&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;TestAgent&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestJNIDirectBuffers&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;TestResolveOnCheckcast&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestResolveOnInstanceof&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;TestResolveOnInvokeInterface&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;bloat&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;31%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;31%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;31%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;31%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;31%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;25%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;31%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;44%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;31%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;44%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;44%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;38%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;38%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;38%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;25%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;38%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(64,127,0);&quot;&gt;56%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;31%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;44%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;38%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;lusearch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;69%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;69%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;69%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;69%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;69%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;69%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;69%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;69%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;69%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;69%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;69%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;69%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(64,127,0);&quot;&gt;56%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;69%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;69%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;76%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;82%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;82%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;82%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;82%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;76%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;82%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;82%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;tClass&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestBackEdgeGC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjbb2000&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Exhaust&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;luindex&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;soot.Main&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;TestClassHierarchy&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;hsqldb&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;Ipsixql&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;t3GT3&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;_222_mpegaudio&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;95%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;_228_jack&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;95%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;TestStop&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26873070&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---sanity-harmony.12472--196-FAILURES-tp26873070p26873070.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26871893</id>
	<title>[rvm-regress] [perf.12471] 2 FAILURES</title>
	<published>2009-12-21T01:57:42Z</published>
	<updated>2009-12-21T01:57:42Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for perf (r15804) on habanero.anu.edu.au, Mon Dec 21 05:05:25 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12471/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12471/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;


 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12471/performance_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Performance Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12438&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12438 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12441&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12441 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12444&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12444 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12449&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12449 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12451&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12451 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12454&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12454 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12457&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12457 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12464&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12464 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12466&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12466 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12471&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12471 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 2/436 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;1 new failures this run&lt;/h3&gt;

&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;production&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;perf-dacapo&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;xalan-1&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;FAILURE&lt;/td&gt;
    &lt;td&gt;&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12471/production/default/perf-dacapo/xalan-1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Details&lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;

&lt;/table&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;7 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;0 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;436/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;436/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;436/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
  &lt;/tr&gt;
  
&lt;/table&gt;





&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;jess-3GC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;lusearch-10&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;lusearch-3GC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;xalan-1&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26871893&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---perf.12471--2-FAILURES-tp26871893p26871893.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26871452</id>
	<title>[rvm-regress] [x87.12470] SUCCESS</title>
	<published>2009-12-21T01:10:18Z</published>
	<updated>2009-12-21T01:10:18Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for x87 (r15804) on jalapeno.anu.edu.au, Mon Dec 21 09:00:24 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/x87/12470/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/x87/12470/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/x87/12343&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;x87.12343 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/x87/12355&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;x87.12355 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/x87/12371&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;x87.12371 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/x87/12384&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;x87.12384 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/x87/12398&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;x87.12398 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/x87/12427&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;x87.12427 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/x87/12440&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;x87.12440 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/x87/12453&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;x87.12453 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/x87/12470&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;x87.12470 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 0/123 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;0 new failures this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;0 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;0 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;123/123&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;123/123&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;123/123&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;123/123&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;123/123&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;123/123&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;123/123&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;123/123&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;123/123&lt;/td&gt;
    
  &lt;/tr&gt;
  
&lt;/table&gt;






&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26871452&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---x87.12470--SUCCESS-tp26871452p26871452.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26870737</id>
	<title>[rvm-regress] [stress.12469] 3 FAILURES</title>
	<published>2009-12-20T23:27:05Z</published>
	<updated>2009-12-20T23:27:05Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for stress (r15804) on jalapeno.anu.edu.au, Sun Dec 20 23:00:23 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/stress/12469/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/stress/12469/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/stress/12325&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stress.12325 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/stress/12341&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stress.12341 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/stress/12368&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stress.12368 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/stress/12381&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stress.12381 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/stress/12397&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stress.12397 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/stress/12409&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stress.12409 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/stress/12423&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stress.12423 (r15803)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/stress/12442&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stress.12442 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/stress/12450&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stress.12450 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/stress/12469&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stress.12469 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 3/104 (2%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;0 new failures this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;8 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;1 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;10/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;102/104&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;100/104&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;101/104&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;101/104&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;99/104&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;103/104&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;102/104&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;100/104&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;102/104&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;101/104&lt;/td&gt;
    
  &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Build Configuration By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;10/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;gcstress&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;97%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;97%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;95%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;97%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;10/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;lusearch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;soot.Main&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2000&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;jython&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;luindex&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;pmd&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestTimedWait&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26870737&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---stress.12469--3-FAILURES-tp26870737p26870737.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26870384</id>
	<title>[rvm-regress] [dna-ppc32.12468] SUCCESS</title>
	<published>2009-12-20T22:32:04Z</published>
	<updated>2009-12-20T22:32:04Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for dna-ppc32 (r15804) on piano.watson.ibm.com, Mon Dec 21 04:00:53 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/dna-ppc32/12468/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/dna-ppc32/12468/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15799&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15799&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15800&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15800&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15801&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15801&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15802&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15802&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15803&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15803&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/dna-ppc32/11537&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc32.11537 (r15788)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/dna-ppc32/11640&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc32.11640 (r15788)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/dna-ppc32/11742&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc32.11742 (r15788)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/dna-ppc32/11843&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc32.11843 (r15792)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/dna-ppc32/11953&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc32.11953 (r15793)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/dna-ppc32/12074&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc32.12074 (r15793)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/dna-ppc32/12173&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc32.12173 (r15796)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/dna-ppc32/12272&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc32.12272 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/dna-ppc32/12370&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc32.12370 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/dna-ppc32/12468&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc32.12468 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 0/8 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;0 new failures this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;0 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;0 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;26/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;02/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;09/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;23/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;30/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;07/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
  &lt;/tr&gt;
  
&lt;/table&gt;






&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26870384&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---dna-ppc32.12468--SUCCESS-tp26870384p26870384.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26870069</id>
	<title>[rvm-regress] [core-ppc64.12467] 6 FAILURES</title>
	<published>2009-12-20T21:23:25Z</published>
	<updated>2009-12-20T21:23:25Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for core-ppc64 (r15804) on piano.watson.ibm.com, Mon Dec 21 01:00:48 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc64/12467/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc64/12467/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc64/12342&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12342 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc64/12353&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12353 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc64/12369&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12369 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc64/12383&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12383 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc64/12396&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12396 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc64/12412&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12412 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc64/12425&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12425 (r15803)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc64/12439&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12439 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc64/12452&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12452 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc64/12467&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12467 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 6/660 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;2 new failures this run&lt;/h3&gt;

&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;development&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;Opt_2&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;gctest&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ReferenceStress&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;OVERTIME&lt;/td&gt;
    &lt;td&gt;&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc64/12467/development/Opt_2/gctest/ReferenceStress&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Details&lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;prototype-opt&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;gctest&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;Exhaust&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;FAILURE&lt;/td&gt;
    &lt;td&gt;&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc64/12467/prototype-opt/default/gctest/Exhaust&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Details&lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;

&lt;/table&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;8 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;4 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;655/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;654/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;654/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;654/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;654/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;655/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;656/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;655/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;655/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;654/660&lt;/td&gt;
    
  &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: antlr&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4871&quot;&gt;4871&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5209&quot;&gt;5209 (+15%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6590&quot;&gt;6590 (+46%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;5056&quot;&gt;5056&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;5638&quot;&gt;5638 (+25%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6229&quot;&gt;6229 (+38%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5490&quot;&gt;5490 (+21%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;5695&quot;&gt;5695 (+26%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4528&quot;&gt;4528&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6457&quot;&gt;6457 (+43%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: bloat&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14213&quot;&gt;14213 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14531&quot;&gt;14531 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;14060&quot;&gt;14060 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;13978&quot;&gt;13978 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;14098&quot;&gt;14098 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;13659&quot;&gt;13659 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14876&quot;&gt;14876 (+12%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;13759&quot;&gt;13759 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;13708&quot;&gt;13708 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14293&quot;&gt;14293 (+8%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;68487&quot;&gt;68487 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;68843&quot;&gt;68843 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;69759&quot;&gt;69759 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;66043&quot;&gt;66043 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;67477&quot;&gt;67477 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;68385&quot;&gt;68385 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;69895&quot;&gt;69895 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;66469&quot;&gt;66469 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;70057&quot;&gt;70057 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;70958&quot;&gt;70958 (+11%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: fop&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5893&quot;&gt;5893 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5863&quot;&gt;5863 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5839&quot;&gt;5839 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6003&quot;&gt;6003 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5846&quot;&gt;5846 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5935&quot;&gt;5935 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6004&quot;&gt;6004 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5833&quot;&gt;5833 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5977&quot;&gt;5977 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5928&quot;&gt;5928 (+4%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: hsqldb&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6876&quot;&gt;6876 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6968&quot;&gt;6968 (+13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7213&quot;&gt;7213 (+17%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7107&quot;&gt;7107 (+15%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6756&quot;&gt;6756 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;6415&quot;&gt;6415 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7270&quot;&gt;7270 (+18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7029&quot;&gt;7029 (+14%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;6523&quot;&gt;6523 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;6489&quot;&gt;6489 (+5%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: jython&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17221&quot;&gt;17221 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17132&quot;&gt;17132 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16911&quot;&gt;16911 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17109&quot;&gt;17109 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17035&quot;&gt;17035 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;16855&quot;&gt;16855 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17245&quot;&gt;17245 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17163&quot;&gt;17163 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;16812&quot;&gt;16812 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17324&quot;&gt;17324 (+5%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: luindex&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17111&quot;&gt;17111 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;16694&quot;&gt;16694 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17962&quot;&gt;17962 (+15%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;16303&quot;&gt;16303 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;16684&quot;&gt;16684 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17228&quot;&gt;17228 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17376&quot;&gt;17376 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;16296&quot;&gt;16296 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;16805&quot;&gt;16805 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17928&quot;&gt;17928 (+15%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: lusearch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10207&quot;&gt;10207 (+65%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;8013&quot;&gt;8013 (+29%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8411&quot;&gt;8411 (+36%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8725&quot;&gt;8725 (+41%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9210&quot;&gt;9210 (+49%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8830&quot;&gt;8830 (+42%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8904&quot;&gt;8904 (+44%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8983&quot;&gt;8983 (+45%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10982&quot;&gt;10982 (+77%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;8237&quot;&gt;8237 (+33%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: pmd&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;11148&quot;&gt;11148 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;11098&quot;&gt;11098 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;11387&quot;&gt;11387 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;11250&quot;&gt;11250 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;11034&quot;&gt;11034 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11722&quot;&gt;11722 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11841&quot;&gt;11841 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;11203&quot;&gt;11203 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11505&quot;&gt;11505 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;11323&quot;&gt;11323 (+5%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10266&quot;&gt;10266 (+22%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10867&quot;&gt;10867 (+29%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10392&quot;&gt;10392 (+23%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10117&quot;&gt;10117 (+20%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10186&quot;&gt;10186 (+21%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10321&quot;&gt;10321 (+22%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10580&quot;&gt;10580 (+25%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10263&quot;&gt;10263 (+22%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10691&quot;&gt;10691 (+27%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10492&quot;&gt;10492 (+24%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjbb2000&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;35320&quot;&gt;35320 (-22%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;35133&quot;&gt;35133 (-23%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;37181&quot;&gt;37181 (-18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;36192&quot;&gt;36192 (-20%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;36853&quot;&gt;36853 (-19%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;36196&quot;&gt;36196 (-20%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;36834&quot;&gt;36834 (-19%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;36561&quot;&gt;36561 (-20%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;36923&quot;&gt;36923 (-19%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;37325&quot;&gt;37325 (-18%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7183&quot;&gt;7183 (-16%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6743&quot;&gt;6743 (-21%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8017&quot;&gt;8017 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8033&quot;&gt;8033 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;7786&quot;&gt;7786 (-9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;8289&quot;&gt;8289&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;7806&quot;&gt;7806 (-8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;7807&quot;&gt;7807 (-8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8016&quot;&gt;8016 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8010&quot;&gt;8010 (-6%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjvm98&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;194.88&quot;&gt;194.88 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;192.55&quot;&gt;192.55 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;193.3&quot;&gt;193.3 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;194.24&quot;&gt;194.24 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;193.4&quot;&gt;193.4 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;195.29&quot;&gt;195.29 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;194.13&quot;&gt;194.13 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;193.2&quot;&gt;193.2 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;194.01&quot;&gt;194.01 (-2%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Build Configuration By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;prototype-opt&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;prototype&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;production&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;development&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;21/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestNestedGC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;ReferenceStress&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjvm98&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Exhaust&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26870069&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---core-ppc64.12467--6-FAILURES-tp26870069p26870069.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26869755</id>
	<title>[rvm-regress] [perf.12466] SUCCESS</title>
	<published>2009-12-20T19:57:51Z</published>
	<updated>2009-12-20T19:57:51Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for perf (r15804) on habanero.anu.edu.au, Sun Dec 20 23:05:19 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12466/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12466/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;


 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12466/performance_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Performance Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12436&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12436 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12438&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12438 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12441&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12441 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12444&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12444 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12449&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12449 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12451&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12451 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12454&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12454 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12457&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12457 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12464&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12464 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12466&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12466 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 0/436 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;0 new failures this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;8 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;0 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;23:05&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;436/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;436/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;436/436&lt;/td&gt;
    
  &lt;/tr&gt;
  
&lt;/table&gt;





&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;23:05&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;jess-3GC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;lusearch-10&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;lusearch-3GC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;xalan-3GC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26869755&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---perf.12466--SUCCESS-tp26869755p26869755.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26868934</id>
	<title>[rvm-regress] [core-ppc64.12465] 7 FAILURES</title>
	<published>2009-12-20T17:18:22Z</published>
	<updated>2009-12-20T17:18:22Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for core-ppc64 (r15804) on piccolo.watson.ibm.com, Sun Dec 20 19:12:13 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12465/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12465/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12282&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12282 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12296&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12296 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12311&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12311 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12339&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12339 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12366&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12366 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12380&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12380 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12394&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12394 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12410&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12410 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12437&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12437 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12465&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc64.12465 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 7/660 (1%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;1 new failures this run&lt;/h3&gt;

&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;development&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;dacapo&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;xalan&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;FAILURE&lt;/td&gt;
    &lt;td&gt;&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc64/12465/development/default/dacapo/xalan&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Details&lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;

&lt;/table&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;11 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;4 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;07/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;08/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;09/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;652/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;653/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;652/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;653/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;653/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;654/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;651/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;655/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;655/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;653/660&lt;/td&gt;
    
  &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: antlr&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;26460&quot;&gt;26460&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;30762&quot;&gt;30762&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;53924&quot;&gt;53924 (+104%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;45539&quot;&gt;45539 (+72%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;26575&quot;&gt;26575&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;52454&quot;&gt;52454 (+98%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;33848&quot;&gt;33848&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;27223&quot;&gt;27223&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;44184&quot;&gt;44184 (+67%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green; font-weight: bold;&quot; title=&quot;26367&quot;&gt;26367&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: bloat&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14549&quot;&gt;14549 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14719&quot;&gt;14719 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14585&quot;&gt;14585 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14683&quot;&gt;14683 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14495&quot;&gt;14495 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;14169&quot;&gt;14169 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;14249&quot;&gt;14249 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14489&quot;&gt;14489 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14870&quot;&gt;14870 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14472&quot;&gt;14472 (+4%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;194454&quot;&gt;194454 (+57%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;179309&quot;&gt;179309 (+45%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;182991&quot;&gt;182991 (+48%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;175992&quot;&gt;175992 (+42%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;138159&quot;&gt;138159&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;147339&quot;&gt;147339&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;276631&quot;&gt;276631 (+124%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;206570&quot;&gt;206570 (+67%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;149459&quot;&gt;149459&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;141817&quot;&gt;141817&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: fop&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5139&quot;&gt;5139 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5119&quot;&gt;5119 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5079&quot;&gt;5079 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5099&quot;&gt;5099 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5056&quot;&gt;5056 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5111&quot;&gt;5111 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5100&quot;&gt;5100 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5084&quot;&gt;5084 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5101&quot;&gt;5101 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5136&quot;&gt;5136 (+6%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: hsqldb&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6831&quot;&gt;6831 (+12%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;6320&quot;&gt;6320 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6445&quot;&gt;6445 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6386&quot;&gt;6386 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6488&quot;&gt;6488 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;6222&quot;&gt;6222 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6140&quot;&gt;6140&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6469&quot;&gt;6469 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;6321&quot;&gt;6321 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;6351&quot;&gt;6351 (+4%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: jython&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16610&quot;&gt;16610 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16571&quot;&gt;16571 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16356&quot;&gt;16356 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16229&quot;&gt;16229 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16372&quot;&gt;16372 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16285&quot;&gt;16285 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16721&quot;&gt;16721 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16426&quot;&gt;16426 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16200&quot;&gt;16200 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;16078&quot;&gt;16078 (+2%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: luindex&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;70215&quot;&gt;70215 (+40%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;59847&quot;&gt;59847 (+19%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;66838&quot;&gt;66838 (+33%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;64162&quot;&gt;64162 (+28%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;62490&quot;&gt;62490 (+25%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;70669&quot;&gt;70669 (+41%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;53803&quot;&gt;53803&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;65924&quot;&gt;65924 (+31%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;63354&quot;&gt;63354 (+26%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;50505&quot;&gt;50505&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: lusearch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9214&quot;&gt;9214&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;21144&quot;&gt;21144 (+247%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;8359&quot;&gt;8359&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9527&quot;&gt;9527 (+56%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7718&quot;&gt;7718&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7117&quot;&gt;7117&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;8507&quot;&gt;8507&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9026&quot;&gt;9026&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9475&quot;&gt;9475 (+55%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7876&quot;&gt;7876&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: pmd&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11592&quot;&gt;11592 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11648&quot;&gt;11648 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11550&quot;&gt;11550 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11522&quot;&gt;11522 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11350&quot;&gt;11350 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11357&quot;&gt;11357 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11401&quot;&gt;11401 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11553&quot;&gt;11553 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11789&quot;&gt;11789 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11542&quot;&gt;11542 (+5%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11495&quot;&gt;11495 (+28%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11581&quot;&gt;11581 (+29%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;10807&quot;&gt;10807 (+20%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11192&quot;&gt;11192 (+25%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9368&quot;&gt;9368&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;10745&quot;&gt;10745 (+20%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11057&quot;&gt;11057 (+23%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11326&quot;&gt;11326 (+26%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11079&quot;&gt;11079 (+24%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9327&quot;&gt;9327&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjbb2000&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;26487&quot;&gt;26487 (-37%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;37712&quot;&gt;37712&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;41255&quot;&gt;41255&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13544&quot;&gt;13544 (-67%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;25715&quot;&gt;25715 (-39%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;39897&quot;&gt;39897&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;3955&quot;&gt;3955 (-9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3802&quot;&gt;3802 (-13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4122&quot;&gt;4122 (-5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3789&quot;&gt;3789 (-13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4250&quot;&gt;4250&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;3989&quot;&gt;3989 (-8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4253&quot;&gt;4253&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4232&quot;&gt;4232&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3898&quot;&gt;3898 (-10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4275&quot;&gt;4275&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjvm98&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;178.91&quot;&gt;178.91 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;182.29&quot;&gt;182.29 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;179.03&quot;&gt;179.03 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;178.87&quot;&gt;178.87 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;180.21&quot;&gt;180.21 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;180.15&quot;&gt;180.15 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;180.19&quot;&gt;180.19 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;179.35&quot;&gt;179.35 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;183.65&quot;&gt;183.65 (-0%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;180.38&quot;&gt;180.38 (-2%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Build Configuration By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;07/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;08/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;09/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;prototype-opt&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;97%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;prototype&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;production&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;development&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;07/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;08/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;09/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestNestedGC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;TestParallelHardwareTrap&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(64,127,0);&quot;&gt;57%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(64,127,0);&quot;&gt;57%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;50%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;Exhaust&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;ReferenceStress&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26868934&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---core-ppc64.12465--7-FAILURES-tp26868934p26868934.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26867749</id>
	<title>[rvm-regress] [perf.12464] 1 FAILURE</title>
	<published>2009-12-20T14:18:28Z</published>
	<updated>2009-12-20T14:18:28Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for perf (r15804) on habanero.anu.edu.au, Sun Dec 20 17:05:25 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12464/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12464/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;


 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12464/performance_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Performance Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12430&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12430 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12436&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12436 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12438&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12438 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12441&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12441 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12444&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12444 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12449&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12449 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12451&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12451 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12454&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12454 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12457&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12457 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12464&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12464 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 1/436 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;1 new failures this run&lt;/h3&gt;

&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;production&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;perf-jvm98&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;jess-3GC&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;FAILURE&lt;/td&gt;
    &lt;td&gt;&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12464/production/default/perf-jvm98/jess-3GC&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Details&lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;

&lt;/table&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;7 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;0 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;17:05&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;436/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;436/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
  &lt;/tr&gt;
  
&lt;/table&gt;





&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;17:05&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;jess-3GC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;lusearch-10&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;lusearch-3GC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;xalan-3GC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26867749&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---perf.12464--1-FAILURE-tp26867749p26867749.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26867443</id>
	<title>[rvm-regress] [dna-ppc64.12463] SUCCESS</title>
	<published>2009-12-20T13:27:02Z</published>
	<updated>2009-12-20T13:27:02Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for dna-ppc64 (r15804) on piccolo.watson.ibm.com, Sun Dec 20 16:10:45 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/dna-ppc64/12463/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/dna-ppc64/12463/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15799&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15799&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15800&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15800&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15801&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15801&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15802&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15802&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15803&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15803&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/dna-ppc64/11531&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc64.11531 (r15788)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/dna-ppc64/11634&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc64.11634 (r15788)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/dna-ppc64/11736&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc64.11736 (r15788)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/dna-ppc64/11838&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc64.11838 (r15792)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/dna-ppc64/11954&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc64.11954 (r15793)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/dna-ppc64/12067&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc64.12067 (r15793)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/dna-ppc64/12168&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc64.12168 (r15796)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/dna-ppc64/12265&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc64.12265 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/dna-ppc64/12364&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc64.12364 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/dna-ppc64/12463&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dna-ppc64.12463 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 0/8 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;0 new failures this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;0 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;0 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;25/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;01/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;08/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;22/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;29/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;06/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;7/7&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;8/8&lt;/td&gt;
    
  &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Build Configuration By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;25/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;01/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;08/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;22/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;29/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;06/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;production_Opt_2&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;




&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26867443&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---dna-ppc64.12463--SUCCESS-tp26867443p26867443.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26866168</id>
	<title>[rvm-regress] [sanity-tier2.12462] 78 FAILURES</title>
	<published>2009-12-20T10:52:22Z</published>
	<updated>2009-12-20T10:52:22Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for sanity-tier2 (r15804) on jalapeno.anu.edu.au, Sun Dec 20 17:13:25 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12462/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12462/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12337&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12337 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12351&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12351 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12363&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12363 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12378&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12378 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12392&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12392 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12407&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12407 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12421&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12421 (r15801)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12435&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12435 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12448&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12448 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12462&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-tier2.12462 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 78/312 (25%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;1 new failures this run&lt;/h3&gt;

&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;FastAdaptiveStickyImmix&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ipsixql&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;Ipsixql&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;OVERTIME&lt;/td&gt;
    &lt;td&gt;&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity-tier2/12462/FastAdaptiveStickyImmix/default/ipsixql/Ipsixql&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Details&lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;

&lt;/table&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;15 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;73 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;233/312&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;234/312&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;234/312&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;236/312&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;235/312&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;235/312&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;232/312&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;231/312&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;234/312&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;234/312&lt;/td&gt;
    
  &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Build Configuration By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;BaseBaseMarkCompact&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;64%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveMarkCompact&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;65%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;FastAdaptiveStickyImmix&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;95%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;95%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;97%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;93%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;92%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;95%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;95%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;bloat&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2000&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;lusearch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;jBYTEmark&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;jython&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;luindex&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;pmd&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;chart&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dom.Counter&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;hsqldb&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;Ipsixql&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;soot.Main&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;tInstance&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;_200_check&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;_201_compress&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;_202_jess&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;_209_db&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;_213_javac&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;_222_mpegaudio&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;_227_mtrt&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;_228_jack&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;antlr&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;CaffeineMark&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;fop&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;JLex.Main&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;RVM_708&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;sax.Counter&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;t3GT3&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;tClass&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestBackEdgeGC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;TestDispatch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestGC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;TestNestedGC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;33%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestParallelHardwareTrap&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26866168&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---sanity-tier2.12462--78-FAILURES-tp26866168p26866168.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26865961</id>
	<title>[rvm-regress] [sanity-ppc64.12461] 60 MISSING; 20 FAILURES</title>
	<published>2009-12-20T10:30:34Z</published>
	<updated>2009-12-20T10:30:34Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for sanity-ppc64 (r15804) on piano.watson.ibm.com, Sun Dec 20 04:01:14 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/sanity-ppc64/12461/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/sanity-ppc64/12461/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/sanity-ppc64/12166&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-ppc64.12166 (r15796)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/sanity-ppc64/12209&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-ppc64.12209 (r15796)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/sanity-ppc64/12237&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-ppc64.12237 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/sanity-ppc64/12264&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-ppc64.12264 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/sanity-ppc64/12308&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-ppc64.12308 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/sanity-ppc64/12336&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-ppc64.12336 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/sanity-ppc64/12362&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-ppc64.12362 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/sanity-ppc64/12406&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-ppc64.12406 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/sanity-ppc64/12434&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-ppc64.12434 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/sanity-ppc64/12461&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-ppc64.12461 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 20/2164 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;0 new failures this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;60 missing tests this run&lt;/h3&gt;

&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ImageSizes&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;R1644449&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;R1644460&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;R1644460_B&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;R1657236&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;R1722506&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;RVM_550&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;RVM_703&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;RVM_708&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;tArray&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;tClass&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestAgent&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestAnnotationInheritance&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestAnnotations&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestArithmetic&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestArrayAccess&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestBackEdgeGC&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestClassHierarchy&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestClassInitializer&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestClassLoading&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestClone&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestCompare&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestConstants&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestDispatch&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestFieldAccess&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestFieldReflection&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestFileChannel&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestFinally&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestFloatingRem&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestInstanceOf&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestInterruptAndSpin&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestInterruptedSleep&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestInterruptedSleep2&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestInterruptedWait&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestInvoke&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestLoadingWithoutName&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestMath&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestMiranda&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestNotification&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestParallelHardwareTrap&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestResolveOnCheckcast&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestResolveOnInstanceof&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestResolveOnInvokeInterface&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestReturn&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestSerialization&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestShutdownHook&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestShutdownHookAfterExit&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestStop&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestSuspend&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestSwitch&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestThrownException&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestTimedWait&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestTimeSlicing&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;TestUTF8&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;tInstance&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;basic&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;tNewInstance&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;CaffeineMark&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;CaffeineMark&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;javalex&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;JLex.Main&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;jBYTEmark&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;jBYTEmark&lt;/td&gt;
  &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;default&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;opttests&lt;/td&gt;
    &lt;td style=&quot;padding-right: 0.2em;&quot;&gt;InvokeReflect&lt;/td&gt;
  &lt;/tr&gt;

&lt;/table&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;20 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;17 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;29/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;02/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;04/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;06/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;09/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2144/2164&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2142/2164&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2139/2164&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2142/2164&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2141/2164&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2143/2164&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2142/2164&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2144/2164&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2204/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2144/2164&lt;/td&gt;
    
  &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: antlr&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5112&quot;&gt;5112 (+14%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5916&quot;&gt;5916 (+32%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5224&quot;&gt;5224 (+16%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6009&quot;&gt;6009 (+34%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6000&quot;&gt;6000 (+34%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5065&quot;&gt;5065 (+13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6648&quot;&gt;6648 (+48%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;5583&quot;&gt;5583 (+24%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;5404&quot;&gt;5404 (+20%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5085&quot;&gt;5085 (+13%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: bloat&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;13853&quot;&gt;13853 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14409&quot;&gt;14409 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;13938&quot;&gt;13938 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;13578&quot;&gt;13578&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;14009&quot;&gt;14009 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14355&quot;&gt;14355 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;13864&quot;&gt;13864 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;13904&quot;&gt;13904 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14643&quot;&gt;14643 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;13600&quot;&gt;13600&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;65199&quot;&gt;65199&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;67104&quot;&gt;67104&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;66662&quot;&gt;66662&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;72042&quot;&gt;72042 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;69040&quot;&gt;69040 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;65448&quot;&gt;65448&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;71864&quot;&gt;71864 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;71020&quot;&gt;71020 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;67223&quot;&gt;67223 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;68821&quot;&gt;68821 (+5%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: fop&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5715&quot;&gt;5715 (+0%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5792&quot;&gt;5792 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;5785&quot;&gt;5785 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5750&quot;&gt;5750 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5809&quot;&gt;5809 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5837&quot;&gt;5837 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5816&quot;&gt;5816 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5868&quot;&gt;5868 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;5754&quot;&gt;5754 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5864&quot;&gt;5864 (+3%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: hsqldb&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6887&quot;&gt;6887 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6876&quot;&gt;6876 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6717&quot;&gt;6717 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6794&quot;&gt;6794 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6913&quot;&gt;6913 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7048&quot;&gt;7048 (+12%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6999&quot;&gt;6999 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7311&quot;&gt;7311 (+16%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6862&quot;&gt;6862 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6429&quot;&gt;6429&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: jython&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17132&quot;&gt;17132 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17371&quot;&gt;17371 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16993&quot;&gt;16993 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17013&quot;&gt;17013 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16943&quot;&gt;16943 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17078&quot;&gt;17078 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17003&quot;&gt;17003 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17010&quot;&gt;17010 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17176&quot;&gt;17176 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17132&quot;&gt;17132 (+3%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: luindex&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;16287&quot;&gt;16287 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17378&quot;&gt;17378 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;16731&quot;&gt;16731 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;17210&quot;&gt;17210 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;17148&quot;&gt;17148 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;16343&quot;&gt;16343 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;17978&quot;&gt;17978 (+13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;16709&quot;&gt;16709 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;16458&quot;&gt;16458 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;16084&quot;&gt;16084&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: lusearch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7854&quot;&gt;7854 (+24%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7734&quot;&gt;7734 (+22%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7922&quot;&gt;7922 (+25%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8076&quot;&gt;8076 (+27%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7754&quot;&gt;7754 (+22%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7648&quot;&gt;7648 (+20%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7755&quot;&gt;7755 (+22%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7608&quot;&gt;7608 (+20%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7679&quot;&gt;7679 (+21%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7669&quot;&gt;7669 (+21%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: pmd&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;11096&quot;&gt;11096 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11416&quot;&gt;11416 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;10955&quot;&gt;10955 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;10847&quot;&gt;10847&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11475&quot;&gt;11475 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11324&quot;&gt;11324 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;11270&quot;&gt;11270 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11316&quot;&gt;11316 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;11000&quot;&gt;11000 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;11451&quot;&gt;11451 (+6%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8620&quot;&gt;8620 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;8390&quot;&gt;8390 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8916&quot;&gt;8916 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8563&quot;&gt;8563 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8624&quot;&gt;8624 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8591&quot;&gt;8591 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8596&quot;&gt;8596 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;8424&quot;&gt;8424 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8608&quot;&gt;8608 (+5%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjbb2000&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;45826&quot;&gt;45826 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;45522&quot;&gt;45522 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;45706&quot;&gt;45706 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;45902&quot;&gt;45902 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;45979&quot;&gt;45979 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;45677&quot;&gt;45677 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;45873&quot;&gt;45873 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;45614&quot;&gt;45614 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;46016&quot;&gt;46016 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;45868&quot;&gt;45868 (-1%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8090&quot;&gt;8090 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8427&quot;&gt;8427 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8232&quot;&gt;8232 (-4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8107&quot;&gt;8107 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8080&quot;&gt;8080 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;8352&quot;&gt;8352 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8429&quot;&gt;8429 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8146&quot;&gt;8146 (-5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;8557&quot;&gt;8557&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8202&quot;&gt;8202 (-5%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjvm98&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;197.75&quot;&gt;197.75 (-0%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;193.25&quot;&gt;193.25 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;196.64&quot;&gt;196.64 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;194.3&quot;&gt;194.3 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;196.27&quot;&gt;196.27 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;196.89&quot;&gt;196.89 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;194.54&quot;&gt;194.54 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;192.49&quot;&gt;192.49 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;197.28&quot;&gt;197.28 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;194.53&quot;&gt;194.53 (-2%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Build Configuration By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;29/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;02/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;04/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;06/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;09/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;ExtremeAssertionsOptAdaptiveCopyMS&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FastAdaptiveSemiSpace&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;BaseBasePoisoned&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;BaseBaseCopyMS&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;97%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;FullAdaptiveImmix&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;97%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptivePoisoned&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;97%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;BaseBaseSemiSpace&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveGenCopy&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;BaseBaseGenCopy&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;BaseBaseMarkSweep&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;FullAdaptiveStickyMS&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;prototype&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;prototype-opt&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveCopyMS&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;FullAdaptiveGenImmix&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveMarkSweep&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;production&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;development&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;29/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;02/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;04/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;06/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;09/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestNestedGC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;ReferenceStress&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;ReferenceTest&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;81%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;bloat&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;Exhaust&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26865961&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---sanity-ppc64.12461--60-MISSING--20-FAILURES-tp26865961p26865961.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26865391</id>
	<title>[rvm-regress] [sanity.12460] 1 FAILURE</title>
	<published>2009-12-20T09:25:56Z</published>
	<updated>2009-12-20T09:25:56Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for sanity (r15804) on jalapeno.anu.edu.au, Sun Dec 20 11:00:54 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12460/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12460/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12335&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12335 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12349&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12349 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12361&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12361 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12377&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12377 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12390&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12390 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12405&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12405 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12418&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12418 (r15801)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12433&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12433 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12446&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12446 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/jalapeno.anu.edu.au/sanity/12460&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12460 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 1/2240 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;0 new failures this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;20 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;0 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2233/2240&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2237/2240&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2237/2240&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2235/2240&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2239/2240&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2237/2240&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2238/2240&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2235/2240&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2235/2240&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2239/2240&lt;/td&gt;
    
  &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: antlr&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;1991&quot;&gt;1991 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;2020&quot;&gt;2020 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;1957&quot;&gt;1957 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;1938&quot;&gt;1938 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;1959&quot;&gt;1959 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;1940&quot;&gt;1940 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;1999&quot;&gt;1999 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;1931&quot;&gt;1931 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;1924&quot;&gt;1924&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;1961&quot;&gt;1961 (+2%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: bloat&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7260&quot;&gt;7260 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7059&quot;&gt;7059 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6974&quot;&gt;6974 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;7011&quot;&gt;7011 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7075&quot;&gt;7075 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6826&quot;&gt;6826&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7137&quot;&gt;7137 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;6945&quot;&gt;6945 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;6880&quot;&gt;6880 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;7044&quot;&gt;7044 (+4%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: chart&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8174&quot;&gt;8174 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;8143&quot;&gt;8143 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8185&quot;&gt;8185 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8171&quot;&gt;8171 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;8074&quot;&gt;8074&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8225&quot;&gt;8225 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8202&quot;&gt;8202 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8179&quot;&gt;8179 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;8127&quot;&gt;8127 (+0%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8162&quot;&gt;8162 (+1%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;27983&quot;&gt;27983 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;28098&quot;&gt;28098 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;27550&quot;&gt;27550&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;28529&quot;&gt;28529 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;28457&quot;&gt;28457 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;28905&quot;&gt;28905 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;28397&quot;&gt;28397 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;27791&quot;&gt;27791&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;29041&quot;&gt;29041 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;27883&quot;&gt;27883 (+1%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: fop&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;2392&quot;&gt;2392 (+18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;2386&quot;&gt;2386 (+18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;2047&quot;&gt;2047&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;2371&quot;&gt;2371 (+17%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;2379&quot;&gt;2379 (+18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;2050&quot;&gt;2050&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;2401&quot;&gt;2401 (+19%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;2408&quot;&gt;2408 (+19%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;2380&quot;&gt;2380 (+18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;2034&quot;&gt;2034&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: hsqldb&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;2996&quot;&gt;2996 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3045&quot;&gt;3045 (+12%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;2881&quot;&gt;2881 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;2856&quot;&gt;2856 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;2876&quot;&gt;2876 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;2947&quot;&gt;2947 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3010&quot;&gt;3010 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;2972&quot;&gt;2972 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;2995&quot;&gt;2995 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;2924&quot;&gt;2924 (+7%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: jython&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6705&quot;&gt;6705 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6505&quot;&gt;6505 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6589&quot;&gt;6589 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6523&quot;&gt;6523 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6570&quot;&gt;6570 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6589&quot;&gt;6589 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6547&quot;&gt;6547 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6628&quot;&gt;6628 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6660&quot;&gt;6660 (+4%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: luindex&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7919&quot;&gt;7919 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7943&quot;&gt;7943 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7626&quot;&gt;7626&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7865&quot;&gt;7865 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7937&quot;&gt;7937 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;7847&quot;&gt;7847 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7944&quot;&gt;7944 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7863&quot;&gt;7863 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;7752&quot;&gt;7752 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7644&quot;&gt;7644&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: lusearch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4048&quot;&gt;4048 (+29%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;3463&quot;&gt;3463 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3674&quot;&gt;3674 (+17%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3576&quot;&gt;3576 (+14%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3665&quot;&gt;3665 (+17%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3782&quot;&gt;3782 (+21%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3622&quot;&gt;3622 (+16%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3514&quot;&gt;3514 (+12%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3604&quot;&gt;3604 (+15%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3733&quot;&gt;3733 (+19%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: pmd&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5067&quot;&gt;5067 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4682&quot;&gt;4682&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4915&quot;&gt;4915 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4986&quot;&gt;4986 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5035&quot;&gt;5035 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4853&quot;&gt;4853 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4865&quot;&gt;4865 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5089&quot;&gt;5089 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4941&quot;&gt;4941 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5016&quot;&gt;5016 (+8%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3833&quot;&gt;3833 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;3673&quot;&gt;3673 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3729&quot;&gt;3729 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3728&quot;&gt;3728 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3749&quot;&gt;3749 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3809&quot;&gt;3809 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3816&quot;&gt;3816 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3787&quot;&gt;3787 (+5%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2000&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;63345&quot;&gt;63345 (-34%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;95283&quot;&gt;95283&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;94066&quot;&gt;94066&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;63127&quot;&gt;63127 (-34%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;94961&quot;&gt;94961&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;94820&quot;&gt;94820&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;95082&quot;&gt;95082&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;62697&quot;&gt;62697 (-34%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;94800&quot;&gt;94800&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;95452&quot;&gt;95452&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13201&quot;&gt;13201 (-7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;13495&quot;&gt;13495 (-5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13374&quot;&gt;13374 (-5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;12522&quot;&gt;12522 (-11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13100&quot;&gt;13100 (-7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;13622&quot;&gt;13622 (-4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13006&quot;&gt;13006 (-8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13191&quot;&gt;13191 (-7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13346&quot;&gt;13346 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13151&quot;&gt;13151 (-7%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjvm98&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;358.95&quot;&gt;358.95 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;359.17&quot;&gt;359.17 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;358.25&quot;&gt;358.25 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;357.96&quot;&gt;357.96 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;357.34&quot;&gt;357.34 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;354.71&quot;&gt;354.71 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;356.79&quot;&gt;356.79 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;358.65&quot;&gt;358.65 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;358.54&quot;&gt;358.54 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;359.7&quot;&gt;359.7 (-1%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Build Configuration By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;FastAdaptiveSemiSpace&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptivePoisoned&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;production&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveStickyMS&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;BaseBaseMarkSweep&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveCopyMS&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;FullAdaptiveGenCopy&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveGenImmix&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;prototype&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;BaseBaseGenCopy&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;BaseBaseSemiSpace&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveImmix&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;prototype-opt&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;69%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;81%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;81%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;AtomicLongArrayTest&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;ReferenceStress&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Exhaust&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Ipsixql&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;jython&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26865391&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---sanity.12460--1-FAILURE-tp26865391p26865391.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26865202</id>
	<title>[rvm-regress] [core-ppc32.12459] SUCCESS</title>
	<published>2009-12-20T09:03:26Z</published>
	<updated>2009-12-20T09:03:26Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for core-ppc32 (r15804) on piano.watson.ibm.com, Sun Dec 20 13:01:28 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12459/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12459/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12320&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12320 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12334&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12334 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12348&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12348 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12360&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12360 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12376&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12376 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12389&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12389 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12404&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12404 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12419&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12419 (r15803)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12432&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12432 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piano.watson.ibm.com/core-ppc32/12459&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12459 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 0/660 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;0 new failures this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;5 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;0 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;10/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;660/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;659/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;660/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;660/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;660/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;660/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;659/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;659/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;658/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;660/660&lt;/td&gt;
    
  &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: antlr&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4935&quot;&gt;4935&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5472&quot;&gt;5472 (+29%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9503&quot;&gt;9503 (+124%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;5296&quot;&gt;5296&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4884&quot;&gt;4884&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;6254&quot;&gt;6254 (+47%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;5329&quot;&gt;5329&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4879&quot;&gt;4879&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4962&quot;&gt;4962&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4886&quot;&gt;4886&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: bloat&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12645&quot;&gt;12645 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12888&quot;&gt;12888 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12868&quot;&gt;12868 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;12515&quot;&gt;12515&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12771&quot;&gt;12771 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12767&quot;&gt;12767 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14861&quot;&gt;14861 (+23%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13853&quot;&gt;13853 (+15%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;12603&quot;&gt;12603&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12931&quot;&gt;12931 (+7%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;60807&quot;&gt;60807 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;61546&quot;&gt;61546 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;62696&quot;&gt;62696 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;63433&quot;&gt;63433 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;60162&quot;&gt;60162&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;59545&quot;&gt;59545&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;59710&quot;&gt;59710&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;63736&quot;&gt;63736 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;60461&quot;&gt;60461 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;61667&quot;&gt;61667 (+4%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: fop&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5647&quot;&gt;5647 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;5578&quot;&gt;5578&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5632&quot;&gt;5632 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5677&quot;&gt;5677 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5624&quot;&gt;5624 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5594&quot;&gt;5594 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5609&quot;&gt;5609 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6046&quot;&gt;6046 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5586&quot;&gt;5586 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5636&quot;&gt;5636 (+3%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: hsqldb&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5814&quot;&gt;5814 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6141&quot;&gt;6141 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6325&quot;&gt;6325 (+14%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6077&quot;&gt;6077 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5836&quot;&gt;5836 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;5880&quot;&gt;5880 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6141&quot;&gt;6141 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6495&quot;&gt;6495 (+17%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6246&quot;&gt;6246 (+13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6073&quot;&gt;6073 (+10%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: jython&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;16206&quot;&gt;16206 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;15812&quot;&gt;15812 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16691&quot;&gt;16691 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;15602&quot;&gt;15602&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;15221&quot;&gt;15221&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;15518&quot;&gt;15518&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;15802&quot;&gt;15802 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16779&quot;&gt;16779 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;15267&quot;&gt;15267&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;15396&quot;&gt;15396&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: luindex&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;14563&quot;&gt;14563&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;14428&quot;&gt;14428&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;15852&quot;&gt;15852 (+12%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;14451&quot;&gt;14451&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;15169&quot;&gt;15169 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16722&quot;&gt;16722 (+18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;14491&quot;&gt;14491&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;16132&quot;&gt;16132 (+14%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;14437&quot;&gt;14437&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;14589&quot;&gt;14589&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: lusearch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;11815&quot;&gt;11815 (+92%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7902&quot;&gt;7902&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;10719&quot;&gt;10719 (+74%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8659&quot;&gt;8659 (+41%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6805&quot;&gt;6805&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7785&quot;&gt;7785&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8519&quot;&gt;8519 (+39%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14628&quot;&gt;14628 (+138%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7796&quot;&gt;7796&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7949&quot;&gt;7949&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: pmd&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9750&quot;&gt;9750 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9207&quot;&gt;9207&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10282&quot;&gt;10282 (+13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9291&quot;&gt;9291&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9241&quot;&gt;9241&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9473&quot;&gt;9473 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9354&quot;&gt;9354&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10330&quot;&gt;10330 (+14%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9243&quot;&gt;9243&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9231&quot;&gt;9231&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;11158&quot;&gt;11158 (+54%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9665&quot;&gt;9665 (+33%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;12665&quot;&gt;12665 (+75%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9952&quot;&gt;9952 (+37%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7443&quot;&gt;7443&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9161&quot;&gt;9161&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9589&quot;&gt;9589 (+32%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;16573&quot;&gt;16573 (+129%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9470&quot;&gt;9470 (+31%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;8879&quot;&gt;8879&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjbb2000&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;32550&quot;&gt;32550 (-38%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;27185&quot;&gt;27185 (-48%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;51832&quot;&gt;51832&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;34122&quot;&gt;34122 (-35%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;32358&quot;&gt;32358 (-38%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;40497&quot;&gt;40497 (-23%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;40188&quot;&gt;40188 (-23%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6870&quot;&gt;6870 (-25%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7216&quot;&gt;7216 (-21%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7485&quot;&gt;7485 (-18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7484&quot;&gt;7484 (-18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8495&quot;&gt;8495 (-7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6486&quot;&gt;6486 (-29%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7081&quot;&gt;7081 (-22%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7300&quot;&gt;7300 (-20%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8175&quot;&gt;8175 (-10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;8068&quot;&gt;8068 (-12%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjvm98&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;219.33&quot;&gt;219.33 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;223.85&quot;&gt;223.85 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;216.37&quot;&gt;216.37 (-5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;222.28&quot;&gt;222.28 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;222.51&quot;&gt;222.51 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;222.67&quot;&gt;222.67 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;223.74&quot;&gt;223.74 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;220.16&quot;&gt;220.16 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;221.42&quot;&gt;221.42 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;221.16&quot;&gt;221.16 (-3%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Build Configuration By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;10/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;prototype-opt&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;production&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;10/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;Exhaust&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;ReferenceStress&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;ReferenceTest&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestTimedWait&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26865202&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---core-ppc32.12459--SUCCESS-tp26865202p26865202.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26864882</id>
	<title>[rvm-regress] [sanity.12458] 2 FAILURES</title>
	<published>2009-12-20T08:25:32Z</published>
	<updated>2009-12-20T08:25:32Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for sanity (r15804) on paprika.anu.edu.au, Sun Dec 20 06:46:55 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12458/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12458/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12333&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12333 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12347&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12347 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12359&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12359 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12375&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12375 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12388&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12388 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12403&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12403 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12417&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12417 (r15801)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12431&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12431 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12445&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12445 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/paprika.anu.edu.au/sanity/12458&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity.12458 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 2/2224 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;0 new failures this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;10 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;1 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2222/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2222/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2220/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2223/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2221/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2222/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2222/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2223/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2220/2224&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2222/2224&lt;/td&gt;
    
  &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: antlr&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;3624&quot;&gt;3624 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3691&quot;&gt;3691 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;3611&quot;&gt;3611 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3642&quot;&gt;3642 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3721&quot;&gt;3721 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3762&quot;&gt;3762 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3745&quot;&gt;3745 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;3591&quot;&gt;3591 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3667&quot;&gt;3667 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;3635&quot;&gt;3635 (+4%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: bloat&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9826&quot;&gt;9826 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10016&quot;&gt;10016 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10181&quot;&gt;10181 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9983&quot;&gt;9983 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9904&quot;&gt;9904 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9739&quot;&gt;9739 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9782&quot;&gt;9782 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9720&quot;&gt;9720 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9716&quot;&gt;9716 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9771&quot;&gt;9771 (+3%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;71814&quot;&gt;71814 (+17%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;72000&quot;&gt;72000 (+17%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;71511&quot;&gt;71511 (+16%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;66735&quot;&gt;66735 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;71869&quot;&gt;71869 (+17%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;65369&quot;&gt;65369 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;69431&quot;&gt;69431 (+13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;70049&quot;&gt;70049 (+14%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;70818&quot;&gt;70818 (+15%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;70062&quot;&gt;70062 (+14%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: fop&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4258&quot;&gt;4258 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4129&quot;&gt;4129 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4150&quot;&gt;4150 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4229&quot;&gt;4229 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4266&quot;&gt;4266 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4156&quot;&gt;4156 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4346&quot;&gt;4346 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4163&quot;&gt;4163 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4156&quot;&gt;4156 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4175&quot;&gt;4175 (+2%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: hsqldb&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4219&quot;&gt;4219 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4335&quot;&gt;4335 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4377&quot;&gt;4377 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4402&quot;&gt;4402 (+12%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green; font-weight: bold;&quot; title=&quot;3911&quot;&gt;3911&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4274&quot;&gt;4274 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4263&quot;&gt;4263 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4637&quot;&gt;4637 (+18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4398&quot;&gt;4398 (+12%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4358&quot;&gt;4358 (+11%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: jython&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8932&quot;&gt;8932 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9330&quot;&gt;9330 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9321&quot;&gt;9321 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8941&quot;&gt;8941 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9050&quot;&gt;9050 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8950&quot;&gt;8950 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9094&quot;&gt;9094 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8947&quot;&gt;8947 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9343&quot;&gt;9343 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9210&quot;&gt;9210 (+5%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: luindex&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;20645&quot;&gt;20645 (+71%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;12277&quot;&gt;12277&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;12346&quot;&gt;12346&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;20368&quot;&gt;20368 (+68%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;21759&quot;&gt;21759 (+80%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;17786&quot;&gt;17786 (+47%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;18894&quot;&gt;18894 (+56%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;12294&quot;&gt;12294&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;21046&quot;&gt;21046 (+74%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;21607&quot;&gt;21607 (+78%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: lusearch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9965&quot;&gt;9965 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10321&quot;&gt;10321 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10352&quot;&gt;10352 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10154&quot;&gt;10154 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9863&quot;&gt;9863 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9802&quot;&gt;9802 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10136&quot;&gt;10136 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10954&quot;&gt;10954 (+17%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10346&quot;&gt;10346 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9974&quot;&gt;9974 (+6%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: pmd&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7142&quot;&gt;7142&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8626&quot;&gt;8626 (+28%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;7308&quot;&gt;7308 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6821&quot;&gt;6821&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;7045&quot;&gt;7045&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6979&quot;&gt;6979&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;7208&quot;&gt;7208 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;7498&quot;&gt;7498 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6972&quot;&gt;6972&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;6945&quot;&gt;6945&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9718&quot;&gt;9718 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9482&quot;&gt;9482&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9580&quot;&gt;9580 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9591&quot;&gt;9591 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10319&quot;&gt;10319 (+11%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10213&quot;&gt;10213 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9729&quot;&gt;9729 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9875&quot;&gt;9875 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9473&quot;&gt;9473&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;10265&quot;&gt;10265 (+10%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjbb2000&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;38442&quot;&gt;38442 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;38330&quot;&gt;38330 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;39071&quot;&gt;39071 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;38619&quot;&gt;38619 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;38516&quot;&gt;38516 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;38497&quot;&gt;38497 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;38863&quot;&gt;38863 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;38956&quot;&gt;38956 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;38201&quot;&gt;38201 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;38566&quot;&gt;38566 (-2%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9338&quot;&gt;9338 (-5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9556&quot;&gt;9556 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9236&quot;&gt;9236 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9808&quot;&gt;9808&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9046&quot;&gt;9046 (-8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;9546&quot;&gt;9546 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;9758&quot;&gt;9758&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9237&quot;&gt;9237 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9209&quot;&gt;9209 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8792&quot;&gt;8792 (-10%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjvm98&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;240.35&quot;&gt;240.35 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;243.06&quot;&gt;243.06 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;241.27&quot;&gt;241.27 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;244.71&quot;&gt;244.71 (-0%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;244.4&quot;&gt;244.4 (-0%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;239.47&quot;&gt;239.47 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;243.08&quot;&gt;243.08 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;238.27&quot;&gt;238.27 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;240.17&quot;&gt;240.17 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;239.61&quot;&gt;239.61 (-2%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Build Configuration By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;FastAdaptiveSemiSpace&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptivePoisoned&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;FullAdaptiveStickyMS&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;FullAdaptiveImmix&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;BaseBaseMarkSweep&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;BaseBasePoisoned&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;production&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;Exhaust&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;ReferenceStress&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;bloat&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;88%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;94%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestStop&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;96%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26864882&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---sanity.12458--2-FAILURES-tp26864882p26864882.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26864626</id>
	<title>[rvm-regress] [perf.12457] SUCCESS</title>
	<published>2009-12-20T07:57:45Z</published>
	<updated>2009-12-20T07:57:45Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for perf (r15804) on habanero.anu.edu.au, Sun Dec 20 11:05:13 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12457/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12457/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;


 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12457/performance_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Performance Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12428&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12428 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12430&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12430 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12436&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12436 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12438&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12438 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12441&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12441 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12444&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12444 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12449&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12449 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12451&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12451 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12454&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12454 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/habanero.anu.edu.au/perf/12457&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;perf.12457 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 0/436 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;0 new failures this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;7 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;0 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;11:05&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;436/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;436/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;434/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;435/436&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;436/436&lt;/td&gt;
    
  &lt;/tr&gt;
  
&lt;/table&gt;





&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;18/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;11:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/12&lt;br /&gt;17:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;br /&gt;23:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;20/12&lt;br /&gt;05:05&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;br /&gt;11:05&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;jess-3GC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;67%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;lusearch-10&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;lusearch-3GC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;xalan-3GC&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;83%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26864626&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---perf.12457--SUCCESS-tp26864626p26864626.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26863397</id>
	<title>[rvm-regress] [core-ppc32.12456] 3 FAILURES</title>
	<published>2009-12-20T05:13:20Z</published>
	<updated>2009-12-20T05:13:20Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for core-ppc32 (r15804) on piccolo.watson.ibm.com, Sun Dec 20 07:09:50 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/12456/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/12456/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15792&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15792&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15793&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15793&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15794&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15794&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15795&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15795&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15796&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15796&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15797&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15797&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15798&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15798&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15799&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15799&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15800&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15800&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15801&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15801&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15802&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15802&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15803&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15803&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/11540&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.11540 (r15788)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/11554&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.11554 (r15788)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/11569&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.11569 (r15788)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/11584&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.11584 (r15788)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/11599&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.11599 (r15788)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/11800&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.11800 (r15792)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/11816&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.11816 (r15792)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/11873&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.11873 (r15792)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/11888&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.11888 (r15792)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/piccolo.watson.ibm.com/core-ppc32/12456&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;core-ppc32.12456 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 3/660 (0%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;0 new failures this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;14 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;0 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;21/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;22/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;23/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;06/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;07/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;11/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;659/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;660/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;658/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;659/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;658/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;652/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;632/634&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;656/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;659/660&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;657/660&lt;/td&gt;
    
  &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: antlr&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;26087&quot;&gt;26087&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;26496&quot;&gt;26496&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;26294&quot;&gt;26294&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;27442&quot;&gt;27442&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;26145&quot;&gt;26145&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;26449&quot;&gt;26449&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;31923&quot;&gt;31923 (+22%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;26319&quot;&gt;26319&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;32632&quot;&gt;32632 (+25%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;26056&quot;&gt;26056&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: bloat&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;12273&quot;&gt;12273&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13315&quot;&gt;13315 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13058&quot;&gt;13058 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;12986&quot;&gt;12986 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;13080&quot;&gt;13080 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;12818&quot;&gt;12818 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12638&quot;&gt;12638 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12626&quot;&gt;12626 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12612&quot;&gt;12612 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;12572&quot;&gt;12572 (+2%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;134976&quot;&gt;134976&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;144867&quot;&gt;144867&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;252114&quot;&gt;252114 (+110%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;136361&quot;&gt;136361&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;183368&quot;&gt;183368 (+52%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;179554&quot;&gt;179554 (+49%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;133191&quot;&gt;133191&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;139676&quot;&gt;139676&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;138732&quot;&gt;138732&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;168911&quot;&gt;168911 (+40%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: fop&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4741&quot;&gt;4741 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4632&quot;&gt;4632 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4640&quot;&gt;4640 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4595&quot;&gt;4595 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4611&quot;&gt;4611 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4631&quot;&gt;4631 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4673&quot;&gt;4673 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4566&quot;&gt;4566 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4577&quot;&gt;4577 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4626&quot;&gt;4626 (+2%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: hsqldb&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5637&quot;&gt;5637 (+13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5660&quot;&gt;5660 (+14%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5626&quot;&gt;5626 (+13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5152&quot;&gt;5152 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5742&quot;&gt;5742 (+16%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5705&quot;&gt;5705 (+15%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5228&quot;&gt;5228 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5252&quot;&gt;5252 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;5398&quot;&gt;5398 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;5590&quot;&gt;5590 (+13%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: jython&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;14403&quot;&gt;14403 (+1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14617&quot;&gt;14617 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14607&quot;&gt;14607 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14623&quot;&gt;14623 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14670&quot;&gt;14670 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14732&quot;&gt;14732 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14838&quot;&gt;14838 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14597&quot;&gt;14597 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14537&quot;&gt;14537 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;14687&quot;&gt;14687 (+3%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: luindex&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;60381&quot;&gt;60381 (+25%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;49098&quot;&gt;49098&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;60196&quot;&gt;60196 (+25%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;57142&quot;&gt;57142 (+19%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;57023&quot;&gt;57023 (+18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;57313&quot;&gt;57313 (+19%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;59969&quot;&gt;59969 (+24%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;48853&quot;&gt;48853&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;59183&quot;&gt;59183 (+23%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;60123&quot;&gt;60123 (+25%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: lusearch&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6475&quot;&gt;6475 (+16%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6713&quot;&gt;6713 (+20%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6919&quot;&gt;6919 (+24%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6824&quot;&gt;6824 (+22%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6487&quot;&gt;6487 (+16%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6621&quot;&gt;6621 (+18%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;7453&quot;&gt;7453 (+33%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6810&quot;&gt;6810 (+22%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6645&quot;&gt;6645 (+19%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6954&quot;&gt;6954 (+24%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: pmd&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;8908&quot;&gt;8908 (+2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;8950&quot;&gt;8950 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9444&quot;&gt;9444 (+8%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9087&quot;&gt;9087 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9172&quot;&gt;9172 (+5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9049&quot;&gt;9049 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9243&quot;&gt;9243 (+6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9314&quot;&gt;9314 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;9055&quot;&gt;9055 (+4%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;9147&quot;&gt;9147 (+5%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;dacapo: xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8370&quot;&gt;8370 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8256&quot;&gt;8256 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8266&quot;&gt;8266 (+9%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8384&quot;&gt;8384 (+10%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;8096&quot;&gt;8096 (+7%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8597&quot;&gt;8597 (+13%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;7795&quot;&gt;7795 (+3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;8450&quot;&gt;8450 (+11%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjbb2000&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;44967&quot;&gt;44967 (-5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;46278&quot;&gt;46278 (-3%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;45260&quot;&gt;45260 (-5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;46870&quot;&gt;46870 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;45126&quot;&gt;45126 (-5%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;46437&quot;&gt;46437 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;46666&quot;&gt;46666 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;44648&quot;&gt;44648 (-6%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;46964&quot;&gt;46964 (-1%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4497&quot;&gt;4497 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4524&quot;&gt;4524 (-0%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4498&quot;&gt;4498 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;4435&quot;&gt;4435 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4556&quot;&gt;4556&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;4528&quot;&gt;4528 (-0%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4491&quot;&gt;4491 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;4499&quot;&gt;4499 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4550&quot;&gt;4550&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjvm98&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;206.57&quot;&gt;206.57 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;206.15&quot;&gt;206.15 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;207.7&quot;&gt;207.7 (-2%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;207.84&quot;&gt;207.84 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;208.35&quot;&gt;208.35 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;210.8&quot;&gt;210.8&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;210.69&quot;&gt;210.69&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;207.94&quot;&gt;207.94 (-1%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;207.55&quot;&gt;207.55 (-2%)&lt;/span&gt;&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Build Configuration By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;21/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;22/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;23/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;06/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;07/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;11/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;prototype&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;98%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;prototype-opt&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;97%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;development&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;production&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(16,223,0);&quot;&gt;99%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;



&lt;h2&gt;Test Case By Test Run&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;19/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;21/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;22/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;23/10&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;06/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;07/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;11/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/11&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;20/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestParallelHardwareTrap&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;eclipse&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;50%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;xalan&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,127,0);&quot;&gt;25%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;75%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjvm98&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(255,0,0);&quot;&gt;0%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Exhaust&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(48,159,0);&quot;&gt;71%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;SPECjbb2005&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;80%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;TestTimedWait&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(32,191,0);&quot;&gt;86%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
        &lt;td style=&quot;background-color: rgb(0,255,0);&quot;&gt;100%&lt;/td&gt;
      
    &lt;/tr&gt;
  
&lt;/table&gt;


&lt;/body&gt;
&lt;/html&gt;

&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Verizon Developer Community
&lt;br&gt;Take advantage of Verizon's best-in-class app development support
&lt;br&gt;A streamlined, 14 day to market process makes app distribution fast and easy
&lt;br&gt;Join now and get one step closer to millions of Verizon customers
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/verizon-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/verizon-dev2dev&lt;/a&gt;&amp;nbsp;&lt;br /&gt;_______________________________________________
&lt;br&gt;Jikesrvm-regression mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26863397&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jikesrvm-regression@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/jikesrvm-regression&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jikesrvm-regression-f3576.html&quot; embed=&quot;fixTarget[3576]&quot; target=&quot;_top&quot; &gt;jikesrvm-regression&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-rvm-regress---core-ppc32.12456--3-FAILURES-tp26863397p26863397.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26862450</id>
	<title>[rvm-regress] [sanity-harmony.12455] 192 FAILURES</title>
	<published>2009-12-20T02:55:53Z</published>
	<updated>2009-12-20T02:55:53Z</updated>
	<author>
		<name>[piccolo]</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body style=&quot;margin: 10px 10px 10px 10px; background-color: #FFFFFF; color: #000000; font-family: verdana, arial, helvetica, sans-serif;&quot;&gt;
&lt;h2&gt;Regression summary for sanity-harmony (r15804) on cayenne.anu.edu.au, Sat Dec 19 23:30:42 UTC 2009&lt;/h2&gt;

&lt;p&gt;See the &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12455/regression_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Full Report&lt;/a&gt;

 &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12455/statistics_report&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Statistics Report&lt;/a&gt;

&lt;/p&gt;


&lt;p&gt;Revisions covered by this test run: &lt;a href=&quot;http://jikesrvm.svn.sourceforge.net/viewvc/jikesrvm?view=rev&amp;amp;revision=15804&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;15804&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Test Runs covered by this report: &lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12331&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12331 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12345&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12345 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12357&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12357 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12373&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12373 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12386&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12386 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12401&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12401 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12415&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12415 (r15799)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12429&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12429 (r15803)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12443&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12443 (r15804)&lt;/a&gt;,
&lt;a href=&quot;http://jikesrvm.anu.edu.au/cattrack/results/cayenne.anu.edu.au/sanity-harmony/12455&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sanity-harmony.12455 (r15804)&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;Failed 192/2196 (8%)&lt;/h2&gt;


&lt;h3 style=&quot;color: #FF0000;&quot;&gt;0 new failures this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #FF8c00;&quot;&gt;0 missing tests this run&lt;/h3&gt;


&lt;h3 style=&quot;color: #00FF00;&quot;&gt;0 new successes this run&lt;/h3&gt;


&lt;h3 class=&quot;intermittent_failures&quot;&gt;45 intermittent failures over this week&lt;/h3&gt;
&lt;h3 class=&quot;consistent_failures&quot;&gt;181 consistent failures over this week&lt;/h3&gt;


&lt;h2&gt;Performance Statistics&lt;/h2&gt;
&lt;table style=&quot;font-size: x-small; border-collapse: collapse; font-weight: normal;&quot;&gt;
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td&gt;&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;10/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;11/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;12/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;13/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;14/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;15/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;16/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;17/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;18/12&lt;/td&gt;
    
      &lt;td style=&quot;vertical-align: top; padding: 0.3em; background-color: white;&quot;&gt;19/12&lt;/td&gt;
    
  &lt;/tr&gt;
  
  &lt;tr style=&quot;text-align: center;&quot;&gt;
    &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: rgb(230,230,230);&quot;&gt;Success Rate&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2005/2196&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;1999/2196&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2001/2196&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;1998/2196&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;1997/2196&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;1997/2196&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;1995/2196&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2001/2196&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2000/2196&lt;/td&gt;
    
      &lt;td style=&quot;background-color: silver;&quot;&gt;2004/2196&lt;/td&gt;
    
  &lt;/tr&gt;
  
    &lt;tr style=&quot;text-align: center;&quot;&gt;
      &lt;td style=&quot;text-align: right; padding: 0.3em; background-color: white;&quot;&gt;dacapo: antlr&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;&quot; title=&quot;5175&quot;&gt;5175 (+35%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4071&quot;&gt;4071&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;5922&quot;&gt;5922 (+54%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;3937&quot;&gt;3937&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6943&quot;&gt;6943 (+81%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red; font-weight: bold;&quot; title=&quot;6752&quot;&gt;6752 (+76%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4531&quot;&gt;4531&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: red;&quot; title=&quot;6008&quot;&gt;6008 (+56%)&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&quot;&gt;&lt;span style=&quot;color: green;&quot; title=&quot;4183&quot;&gt;4183&lt;/span&gt;&lt;/td&gt;
      
        &lt;td style=&quot;background-color: silver;&q