Return-Path: Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: (qmail 69042 invoked from network); 16 Nov 2009 16:07:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 16 Nov 2009 16:07:12 -0000 Received: (qmail 46904 invoked by uid 500); 16 Nov 2009 16:07:11 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 46886 invoked by uid 500); 16 Nov 2009 16:07:11 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org, commits@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 46878 invoked by uid 99); 16 Nov 2009 16:07:11 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Nov 2009 16:07:11 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Nov 2009 16:07:09 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6F84423889B2; Mon, 16 Nov 2009 16:06:48 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r880826 - /subversion/trunk/subversion/tests/cmdline/patch_tests.py Date: Mon, 16 Nov 2009 16:06:48 -0000 To: commits@subversion.apache.org From: stsp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091116160648.6F84423889B2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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__':