Lucene.Net.Tests.Index.TestPostingsFormat.TestRandom(): Manually failing test on .NET Standard 1.5 in Debug mode 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/b7ab123b Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/b7ab123b Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/b7ab123b Branch: refs/heads/master Commit: b7ab123bed3ce084c1fa0e871f44045c2d7416af Parents: bfb0787 Author: Shad Storhaug <[email protected]> Authored: Fri Sep 8 23:17:44 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Fri Sep 8 23:17:44 2017 +0700 ---------------------------------------------------------------------- src/Lucene.Net.Tests/Index/TestPostingsFormat.cs | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/b7ab123b/src/Lucene.Net.Tests/Index/TestPostingsFormat.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Tests/Index/TestPostingsFormat.cs b/src/Lucene.Net.Tests/Index/TestPostingsFormat.cs index 20c6b07..64a0f3c 100644 --- a/src/Lucene.Net.Tests/Index/TestPostingsFormat.cs +++ b/src/Lucene.Net.Tests/Index/TestPostingsFormat.cs @@ -87,6 +87,12 @@ namespace Lucene.Net.Index [Test] public override void TestRandom() { +#if DEBUG +#if NETSTANDARD1_5 + fail("LUCENENET TODO: Fatally crashes NUnit"); +#endif +#endif + base.TestRandom(); }
