Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 6A3B2200BB0 for ; Sun, 30 Oct 2016 22:37:11 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 68BBB160AF1; Sun, 30 Oct 2016 21:37:11 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id AD179160ADD for ; Sun, 30 Oct 2016 22:37:10 +0100 (CET) Received: (qmail 63927 invoked by uid 500); 30 Oct 2016 21:37:09 -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 Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 63917 invoked by uid 99); 30 Oct 2016 21:37:09 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Oct 2016 21:37:09 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 77010C0829 for ; Sun, 30 Oct 2016 21:37:09 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -1.999 X-Spam-Level: X-Spam-Status: No, score=-1.999 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id x0mF--Sy27VC for ; Sun, 30 Oct 2016 21:37:07 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id C92BC5F1D5 for ; Sun, 30 Oct 2016 21:37:06 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 1AD78E02E5 for ; Sun, 30 Oct 2016 21:37:01 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 256BC3A0222 for ; Sun, 30 Oct 2016 21:37:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1767184 - /subversion/trunk/subversion/tests/cmdline/list_tests.py Date: Sun, 30 Oct 2016 21:37:00 -0000 To: commits@subversion.apache.org From: stefan2@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20161030213701.256BC3A0222@svn01-us-west.apache.org> archived-at: Sun, 30 Oct 2016 21:37:11 -0000 Author: stefan2 Date: Sun Oct 30 21:37:00 2016 New Revision: 1767184 URL: http://svn.apache.org/viewvc?rev=1767184&view=rev Log: Follow-up to r1767183: Fix tests under Windows. * subversion/tests/cmdline/list_tests.py (list_plain, list_verbose): URLs must always use forward slashes. Modified: subversion/trunk/subversion/tests/cmdline/list_tests.py Modified: subversion/trunk/subversion/tests/cmdline/list_tests.py URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/list_tests.py?rev=1767184&r1=1767183&r2=1767184&view=diff ============================================================================== --- subversion/trunk/subversion/tests/cmdline/list_tests.py (original) +++ subversion/trunk/subversion/tests/cmdline/list_tests.py Sun Oct 30 21:37:00 2016 @@ -54,7 +54,7 @@ def list_plain(sbox): "basic, recursive list" sbox.build(read_only=True) - path = os.path.join(sbox.repo_url, 'A', 'D') + path = sbox.repo_url + "/A/D" # check plain info expected = [ "G/\n", @@ -75,7 +75,7 @@ def list_verbose(sbox): "verbose recursive list" sbox.build(read_only=True) - path = os.path.join(sbox.repo_url, 'A', 'D') + path = sbox.repo_url + "/A/D" # check plain info expected = svntest.verify.RegexListOutput([