diff -r 651b2149f1e7 -r 3163b8f8ff26 tests/test-revert.t --- a/tests/test-revert.t Fri Jun 27 16:08:09 2014 +0200 +++ b/tests/test-revert.t Wed Jun 25 17:24:18 2014 +0100 @@ -460,7 +460,9 @@ > content = [] > for filename, ctxkey, wckey in combination: > cc = ctxcontent[ctxkey] - > if target == 'base': + > if target == 'filelist': + > print filename + > elif target == 'base': > content.append((filename, cc[0])) > elif target == 'parent': > content.append((filename, cc[1])) @@ -477,6 +479,11 @@ > f.close() > EOF +check list of planned files + + $ python gen-revert-cases.py filelist + modified_clean + Script to make a simple text version of the content ---------------------------------------------------