This is Google's cache of http://www.cs.hmc.edu/clinic/projects/2004/google/patches_/. It is a snapshot of the page as it appeared on Dec 20, 2008 18:30:30 GMT. The current page could have changed in the meantime. Learn more

Text-only version
These search terms are highlighted: wine These terms only appear in links pointing to this page: cs hmc edu  
HMC Homepage      CS Home

Here's how you apply patches if you have an output generated by the standard (which is diff -u)

	$> patch -p0 < patchfile
	

Patch File Description
enablgcov.patch This creates all the necessary changes to create a "user friendly" interface for adding in code coverage analysis. Please see the comments at the top of the patch for further details.
-- Aaron
loader.patch This adds in a dummy function called __bb_init_func which immediately returns. This allows the file to be compiled with gcov flags though. So that's kinda nice.
-- Aaron
enablegcovdoc.patch This patch is the one which will (hopefully) be accepted by Alexandre. It makes no changes to the build system, it only changes documentation will now include how to build Wine for code coverage analysis.
-- Aaron
make_lcov.patch This is another patch meant to be sent to the Wine project. This allows for very user friendly make interface to run lcov and thus determine code coverage statistics.
-- Aaron
lzexpand.patch This patch adds tests for the lzexpand dll to the wine test suite. (Written by Evan and Ed).
-- Cal
registry.patch This corrects /dlls/advapi32/tests/registry.c so that it now no longer fails tests on Windows XP. The details can be found in the patch itself and the wine-devel mailing list in the february archives.
-- Aaron
genhtml patches
legend patch Adds a legend to the header of each displayed page (both summary pages and source pages). These legends explains lcov's coloring scheme. This does not correct for -b (or --nif-baseline) flags. A later version hopefully will.
--Cal
--missing-from-baseline patch Adds the --missing-from-baseline flag to genhtml (part of lcov). This allows the user to look at only the lines executed in the main run that were not executed in the baseline. Also contains some formatting changes respecting the baseline (-b) option.
--Cal