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 B7609200D20 for ; Sat, 9 Sep 2017 02:31:24 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B62A31609D7; Sat, 9 Sep 2017 00:31:24 +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 5CA3A160F0F for ; Sat, 9 Sep 2017 02:31:23 +0200 (CEST) Received: (qmail 47865 invoked by uid 500); 9 Sep 2017 00:31:22 -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 45623 invoked by uid 99); 9 Sep 2017 00:31:20 -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; Sat, 09 Sep 2017 00:31:20 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CAC67F570B; Sat, 9 Sep 2017 00:31:19 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: nightowl888@apache.org To: commits@lucenenet.apache.org Date: Sat, 09 Sep 2017 00:31:51 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [33/50] [abbrv] lucenenet git commit: Lucene.Net.Tests.Index.TestTermVectorsFormat.TestLotsOfFields(): Manually failing test on .NET Standard 2.0 because it crashes the test runner - need to investigate archived-at: Sat, 09 Sep 2017 00:31:24 -0000 Lucene.Net.Tests.Index.TestTermVectorsFormat.TestLotsOfFields(): Manually failing test on .NET Standard 2.0 because it crashes the test runner - need to investigate Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/62333ec5 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/62333ec5 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/62333ec5 Branch: refs/heads/master Commit: 62333ec568e3989e73dee65464e89d85c44acb82 Parents: b7ab123 Author: Shad Storhaug Authored: Fri Sep 8 23:18:40 2017 +0700 Committer: Shad Storhaug Committed: Fri Sep 8 23:18:40 2017 +0700 ---------------------------------------------------------------------- src/Lucene.Net.Tests/Index/TestTermVectorsFormat.cs | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/62333ec5/src/Lucene.Net.Tests/Index/TestTermVectorsFormat.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Tests/Index/TestTermVectorsFormat.cs b/src/Lucene.Net.Tests/Index/TestTermVectorsFormat.cs index b189e41..c9fa8c0 100644 --- a/src/Lucene.Net.Tests/Index/TestTermVectorsFormat.cs +++ b/src/Lucene.Net.Tests/Index/TestTermVectorsFormat.cs @@ -84,6 +84,10 @@ namespace Lucene.Net.Index [Test] public override void TestLotsOfFields() { +#if NETCOREAPP2_0 + fail("LUCENENET TODO: Fatally crashes NUnit"); +#endif + base.TestLotsOfFields(); }