From commits-return-6352-archive-asf-public=cust-asf.ponee.io@lucenenet.apache.org Sat Jul 13 17:58:07 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id A05BF18025F for ; Sat, 13 Jul 2019 19:58:07 +0200 (CEST) Received: (qmail 57878 invoked by uid 500); 13 Jul 2019 17:58:07 -0000 Mailing-List: contact commits-help@lucenenet.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: lucene-net-dev@lucenenet.apache.org Delivered-To: mailing list commits@lucenenet.apache.org Received: (qmail 57866 invoked by uid 99); 13 Jul 2019 17:58:07 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 13 Jul 2019 17:58:07 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id D21E685E16; Sat, 13 Jul 2019 17:58:06 +0000 (UTC) Date: Sat, 13 Jul 2019 17:58:06 +0000 To: "commits@lucenenet.apache.org" Subject: [lucenenet] branch master updated: Lucene.Net.Tests.Replicator: Conditional compilation for Timeout, as the attribute doesn't exist in .NET Standard 1.6 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <156304068679.5263.7401901511816989881@gitbox.apache.org> From: nightowl888@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: lucenenet X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 5fbf24555cda49b4db9c442636c6bf7fc9b28d17 X-Git-Newrev: dbc36d76fc0265dd842bc14faad5de17d257db81 X-Git-Rev: dbc36d76fc0265dd842bc14faad5de17d257db81 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. nightowl888 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/lucenenet.git The following commit(s) were added to refs/heads/master by this push: new dbc36d7 Lucene.Net.Tests.Replicator: Conditional compilation for Timeout, as the attribute doesn't exist in .NET Standard 1.6 dbc36d7 is described below commit dbc36d76fc0265dd842bc14faad5de17d257db81 Author: Shad Storhaug AuthorDate: Sun Jul 14 00:57:46 2019 +0700 Lucene.Net.Tests.Replicator: Conditional compilation for Timeout, as the attribute doesn't exist in .NET Standard 1.6 --- src/Lucene.Net.Tests.Replicator/Properties/AssemblyInfo.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Lucene.Net.Tests.Replicator/Properties/AssemblyInfo.cs b/src/Lucene.Net.Tests.Replicator/Properties/AssemblyInfo.cs index 8c77c6b..0949bc5 100644 --- a/src/Lucene.Net.Tests.Replicator/Properties/AssemblyInfo.cs +++ b/src/Lucene.Net.Tests.Replicator/Properties/AssemblyInfo.cs @@ -36,8 +36,11 @@ using System.Runtime.InteropServices; // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("418e9d8e-2369-4b52-8d2f-5a987213999b")] -// LUCENENET TODO: 2019-07-14 - Had a hanging test in Lucene.Net.Tests.Replicator (not sure which one), +#if !NETSTANDARD1_6 +// LUCENENET TODO: 2019-07-14 - Had a hanging test in Lucene.Net.Tests.Replicator +// on .NET Framwork 4.5 (not sure which one), // but unable to repeat. Adding this timeout (with at least 10x the time it usually takes // to run all of these tests) to ensure if we get a hang again, the hanging test will fail // so we know which test to investigate. [assembly: NUnit.Framework.Timeout(120000)] +#endif