1 <chapter id=
"cvs-regression">
2 <title>How to do regression testing using CVS
</title>
5 written by Gerard Patel
8 (Extracted from
<filename>wine/documentation/bugreports
</filename>)
12 A problem that can happen sometimes is 'it used to work
13 before, now it doesn't anymore...'. Here is a step by step
14 procedure to try to pinpoint when the problem occurred. This is
15 <emphasis>NOT
</emphasis> for casual users.
21 Get the
<quote>full CVS
</quote> archive from winehq. This archive is
22 the CVS tree but with the tags controlling the versioning
23 system. It's a big file (
> 40 meg) with a name like
24 wine-cvsdirs-
<last update date
> (it's more than
100mb
25 when uncompressed, you can't very well do this with
26 small, old computers or slow Internet connections).
31 untar it into a repository directory:
34 tar -zxf cvs-dirs-
2003-
01-
15.tar.gz
41 extract a new destination directory. This directory must
42 not be in a subdirectory of the repository else
43 <command>cvs
</command> will think it's part of the
44 repository and deny you an extraction in the repository:
47 mv wine wine_current (-
> this protects your current wine sandbox, if any)
48 export CVSROOT=/home/gerard/repository
50 cvs -d $CVSROOT checkout wine
54 Note that it's not possible to do a checkout at a given
55 date; you always do the checkout for the last date where
56 the wine-cvsdirs-xxx snapshot was generated.
59 Note also that it is possible to do all this with a direct
60 CVS connection, of course. The full CVS file method is less
61 painful for the Winehq CVS server and probably a bit faster
62 if you don't have a very good net connection.
66 If you use CVS directly from the winehq.com server, do not
67 forget to add to your
<filename>.cvsrc
</filename> file:
78 you will have now in the
<filename>~/wine
</filename>
79 directory an image of the CVS tree, on the client side.
80 Now update this image to the date you want:
83 cvs -d $CVSROOT update -D
"2002-06-01 CST"
87 The date format is
<literal>YYYY-MM-DD HH:MM:SS
</literal>.
88 Using the CST date format ensure that you will be able to
89 extract patches in a way that will be compatible with the
91 <ulink url=
"http://www.winehq.com/hypermail/wine-cvs">
92 http://www.winehq.com/hypermail/wine-cvs
</ulink>
95 Many messages will inform you that more recent files have
96 been deleted to set back the client cvs tree to the date
97 you asked, for example:
99 cvs update: tsx11/ts_xf86dga2.c is no longer in the repository
103 <command>cvs update
</command> is not limited to upgrade to
104 a
<emphasis>newer
</emphasis> version as I have believed for
110 Now proceed as for a normal update:
117 If any non-programmer reads this, the fastest method to get
118 at the point where the problem occurred is to use a binary
119 search, that is, if the problem occurred in
1999, start at
120 mid-year, then is the problem is already here, back to
1st
121 April, if not, to
1st October, and so on.
124 If you have lot of hard disk free space (a full compile currently
125 takes
400 Mb), copy the oldest known working version before
126 updating it, it will save time if you need to go back. (it's
127 better to
<command>make distclean
</command> before going back in
128 time, so you have to make everything if you don't backup the older
132 When you have found the day where the problem happened, continue
133 the search using the wine-cvs archive (sorted by date) and a
134 more precise cvs update including hour, minute, second :
136 cvs -d $CVSROOT update -D
"2002-06-01 15:17:25 CST"
138 This will allow you to find easily the exact patch that did it.
143 If you find the patch that is the cause of the problem, you have
144 almost won; report about it to
145 <ulink url=
"http://bugs.winehq.com/">Wine Bugzilla
</ulink>
146 or subscribe to wine-devel and post it there. There is a chance
148 will jump in to suggest a fix; or there is always the possibility
149 to look hard at the patch until it is coerced to reveal where is
156 <!-- Keep this comment at the end of the file
159 sgml-parent-document:("wine-devel.sgml" "set" "book" "part" "chapter" "")