You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ni...@apache.org on 2020/07/15 02:30:08 UTC

[lucenenet] 12/14: Lucene.Net.TestFramework: Added logging of system properties so we can see how they are configured in CI

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

commit 03aa984060c384501ebc61882c7297bc2250bd21
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Tue Jul 14 08:57:07 2020 +0700

    Lucene.Net.TestFramework: Added logging of system properties so we can see how they are configured in CI
---
 src/Lucene.Net.TestFramework/Util/LuceneTestCase.cs | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/src/Lucene.Net.TestFramework/Util/LuceneTestCase.cs b/src/Lucene.Net.TestFramework/Util/LuceneTestCase.cs
index c7e40af..85711d9 100644
--- a/src/Lucene.Net.TestFramework/Util/LuceneTestCase.cs
+++ b/src/Lucene.Net.TestFramework/Util/LuceneTestCase.cs
@@ -754,6 +754,27 @@ namespace Lucene.Net.Util
 
             Console.Write("Default Similarity: ");
             Console.WriteLine(similarityName);
+
+            Console.Write("Nightly: ");
+            Console.WriteLine(TEST_NIGHTLY);
+
+            Console.Write("Weekly: ");
+            Console.WriteLine(TEST_WEEKLY);
+
+            Console.Write("Slow: ");
+            Console.WriteLine(TEST_SLOW);
+
+            Console.Write("Awaits Fix: ");
+            Console.WriteLine(TEST_AWAITSFIX);
+
+            Console.Write("Directory: ");
+            Console.WriteLine(TEST_DIRECTORY);
+
+            Console.Write("Verbose: ");
+            Console.WriteLine(VERBOSE);
+
+            Console.Write("Random Multiplier: ");
+            Console.WriteLine(RANDOM_MULTIPLIER);
         }
 
         /// <summary>