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.ProfileSe
rviceUnitTestCase"
> name="testDefaultDSOps"
time="0.824">
> <failure
message="Set<ManagedOperation> >
0"
>
type="junit.framework.AssertionFailedError">jun
it.framework.AssertionFailedError:
> Set<ManagedOperation> > 0
> at
>
org.jboss.test.profileservice.test.ProfileServiceUnitTestCas
e.testDefaultDSOps(ProfileServiceUnitTestCase.java:396)
>
> </failure>
> </testcase>
>
> Changelog for this run:
> http://hudson.qa.jbo
ss.com/hudson/view/JBoss%20AS/job/JBoss-AS-5.0.x-TestSuite-s
un15/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 lists.jboss.org
>> https://lists.jboss.org/mailman/listinfo/jboss-develop
ment
>
> _______________________________________________
> jboss-development mailing list
> jboss-development lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/jboss-develop
ment
_______________________________________________
jboss-development mailing list
jboss-development lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-develop
ment
|