Author: stsp
Date: Mon Nov 16 16:06:48 2009
New Revision: 880826
URL: http://svn.apache.org/viewvc?rev=880826&view=rev
Log:
I don't know what happened, but apparently the patch tests all pass again
on Windows. Calm down the Windows buildbot which is flaming red because
of the good news.
* subversion/tests/cmdline/patch_tests.py
(test_list): Remove all XFail markers.
Modified:
subversion/trunk/subversion/tests/cmdline/patch_tests.py
Modified: subversion/trunk/subversion/tests/cmdline/patch_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/patch_tests.py?rev=880826&r1=880825&r2=880826&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/patch_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/patch_tests.py Mon Nov 16 16:06:48 2009
@@ -839,11 +839,11 @@
# list all tests here, starting with None:
test_list = [ None,
- XFail(patch_unidiff, is_os_windows),
+ patch_unidiff,
patch_unidiff_absolute_paths,
- XFail(patch_unidiff_offset, is_os_windows),
- XFail(patch_chopped_leading_spaces, is_os_windows),
- XFail(patch_unidiff_strip1, is_os_windows),
+ patch_unidiff_offset,
+ patch_chopped_leading_spaces,
+ patch_unidiff_strip1,
]
if __name__ == '__main__':
|