Monthly Archives for April 2009

Keep JUnit TestCases from Cobertura Instrumentation

To keep your Cobertura code coverage reports accurate, don’t forget to exclude any JUnit TestCases during instrumentation. Example: 1 2 3 4 5 6 <cobertura-instrument todir="${cobertura.inst.classes}" datafile="${cobertura.datafile}"> <fileset dir="${build}"> <include name="**/*.class"/> <exclude name="**/*Test*.class"/> </fileset> </cobertura-instrument> Here’s one of my full … Continue reading

16. April 2009 by Jason
Categories: Java | Tags: | Leave a comment

Installing Citrix XenServer 5.0 with acpi issues

Like my other post related to getting CentOS installed on an HP dc5800, Citrix XenServer also balks on this host. There’s a technote to get you past some of the issues, but it doesn’t completely fix the issue in 5.0. … Continue reading

07. April 2009 by Jason
Categories: Virtualization | Tags: | Leave a comment