Hi, Running in Release mode helped a lot; the whole test suite (2608 tests) ran in about 15 minutes. However, I have 99 failing tests and 110 ignored tests. I can get it down to 81 failing tests by hardcoding LuceneTestCase.SetUp to set CurrentCulture and CurrentUICulture to InvariantCulture, but some tests fails with "System.NotSupportedException : this codec can only be used for reading" which doesn't sound very culture relevant.
Are you saying that they should all work? I could look into the [presumed] culture-related failures; most notably the ones in the TestSort class where TestDouble and TestFloat fails using my culture (sv-SE). // Simon On 14/10/15 12:19, Laimonas Simutis wrote: > Simon, > > By default the tests run in verbose mode that outputs large amounts of > logging that slow things down. If you run a release version, the verbosity > flag gets turned off. Or you can turn it off via app.config setting, the > code location that controls this flag is here: > > https://github.com/apache/lucenenet/blob/master/src/Lucene.Net.TestFramework/Util/LuceneTestCase.cs#L295 > > > > On Wed, Oct 14, 2015 at 2:18 AM, Simon Svensson <[email protected]> wrote: > >> Hi, >> >> Laimonas, when you say that the tests are passing for Lucene Core; how >> are you executing them? >> >> I've got ... >> * Windows 7 running in latest Parallells Desktop >> * Visual Studio 2015 Community Edition >> * I've checked out commit 812e1c5 (from 24 aug 2015) >> * I'm running in Debug / Mixed Platforms (which, for some reason, >> compiles Lucene.Net as x86) >> * Lucene.Net.Tests (and all references) build successfully. >> * Rightclicking Lcuene.Net.Tests and executing "Run Unit Tests" gives >> me a toolwindow "Unit Test Sessions - All tests from Lucene.Net.Tests" >> with a total of 2608 tests. >> >> Running all tests takes ... And I'm giving up waiting for a number. I >> managed to run 29 of 2608 tests in the ~30 minutes I was waiting. >> >> Doing all the above steps in Visual Studio 2013 Professional gives me >> the same behavior, 29 of 2608 tests executes in 30 minutes before I stop >> the test execution. >> >> How should the tests be run? >> >> // Simon >> >> On 14/10/15 02:29, Laimonas Simutis wrote: >>> Prescott, >>> >>> We are at all tests passing for Lucene Core. Now the next hurdle is to >>> finish up Analysis port and tests and that's where we got stuck. >>> >>> I might start having more cycles in a month or two, but right now there >> is >>> no activity in the project. >>> >>> On Tue, Oct 13, 2015 at 2:38 PM, Prescott Nasser < >>> [email protected]> wrote: >>> >>>> Hey guys, I have been fairly MIA - anyone have a recap for 4.0 release. >> I >>>> think its clear we are struggling to get it across the line, which I >> will >>>> report and ask for help. >>>> >>>> Sent from my Windows Phone >>> >> >> >
