[jboss-dev] Re: [Fwd: Re: Beta3 status] - please reply
Alexey Loubyansky
alexey.loubyansky at redhat.com
Thu Dec 20 17:37:17 EST 2007
Committed last hacks for the templates. There is one more I'd like to
check-in below. I posted it on the forums but haven't heard about
possible consequences. This null serializable resets the value of the
property and the tests fail.
$ svn diff
Index: main/org/jboss/profileservice/management/ManagementViewImpl.java
===================================================================
--- main/org/jboss/profileservice/management/ManagementViewImpl.java
(revision 68434)
+++ main/org/jboss/profileservice/management/ManagementViewImpl.java
(working copy)
@@ -649,7 +649,9 @@
serializable = (Serializable)value;
metaValue = MetaValueFactory.getInstance().create(value);
}
- ctxProp.setValue(serializable);
+
+ if(serializable != null)
+ ctxProp.setValue(serializable);
// todo - should this also dispatch to runtime component?
Object componentName = getComponentName(ctxProp);
if (componentName != null)
Rajesh Rajasekaran wrote:
> #258 which is currently running has an additional failure on the
> ProfileServiceUnitTestCase.
>
> <testcase
> classname="org.jboss.test.profileservice.test.ProfileServiceUnitTestCase"
> name="testDefaultDSOps" time="0.824">
> <failure message="Set<ManagedOperation> > 0"
> type="junit.framework.AssertionFailedError">junit.framework.AssertionFailedError:
> Set<ManagedOperation> > 0
> at
> org.jboss.test.profileservice.test.ProfileServiceUnitTestCase.testDefaultDSOps(ProfileServiceUnitTestCase.java:396)
>
> </failure>
> </testcase>
>
> Changelog for this run:
> http://hudson.qa.jboss.com/hudson/view/JBoss%20AS/job/JBoss-AS-5.0.x-TestSuite-sun15/changes
>
>
>
> Dimitris Andreadis wrote:
>> That's from the latest run:
>> http://hudson.qa.jboss.com/hudson/job/JBoss-AS-5.0.x-TestSuite-sun15/257/testReport/org.jboss.test.profileservice.test/
>>
>>
>> Alexey Loubyansky wrote:
>>> Could someone send me current test results for
>>> ProfileServiceUnitTestCase?
>>>
>>> Thanks.
>> _______________________________________________
>> jboss-development mailing list
>> jboss-development at lists.jboss.org
>> https://lists.jboss.org/mailman/listinfo/jboss-development
>
> _______________________________________________
> jboss-development mailing list
> jboss-development at lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/jboss-development
More information about the jboss-development
mailing list