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 A797B200B89 for ; Wed, 7 Sep 2016 06:31:39 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id A654C160ACE; Wed, 7 Sep 2016 04:31:39 +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 230FA160AA9 for ; Wed, 7 Sep 2016 06:31:38 +0200 (CEST) Received: (qmail 16251 invoked by uid 500); 7 Sep 2016 04:31:38 -0000 Mailing-List: contact dev-help@avro.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@avro.apache.org Delivered-To: mailing list dev@avro.apache.org Received: (qmail 16235 invoked by uid 99); 7 Sep 2016 04:31:37 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Sep 2016 04:31:37 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 925D6DFE80; Wed, 7 Sep 2016 04:31:37 +0000 (UTC) From: radai-rosenblatt To: dev@avro.apache.org Reply-To: dev@avro.apache.org Message-ID: Subject: [GitHub] avro pull request #119: fix TestIdl to pass on windows Content-Type: text/plain Date: Wed, 7 Sep 2016 04:31:37 +0000 (UTC) archived-at: Wed, 07 Sep 2016 04:31:39 -0000 GitHub user radai-rosenblatt opened a pull request: https://github.com/apache/avro/pull/119 fix TestIdl to pass on windows for some of the avdl input files for the test the copyright statement is picked up as the doc string. when generating jackson escapes \n and \r characters, resulting in a doc string that contains the 2 characters '\' followed by 'r' instead of '\r'. the test tries to strip out \r to "normalize" \r\n into \n, but the input actually contains '\' 'r' '\' 'n', causing the test to fail on windows. Signed-off-by: radai-rosenblatt You can merge this pull request into a Git repository by running: $ git pull https://github.com/radai-rosenblatt/avro build-on-windows Alternatively you can review and apply these changes as the patch at: https://github.com/apache/avro/pull/119.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #119 ---- commit 5a697806d18224fc0ac39999537124e542bc773f Author: radai-rosenblatt Date: 2016-09-07T04:27:08Z fix TestIdl to pass on windows Signed-off-by: radai-rosenblatt ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---