[Libreoffice-commits] online.git: loolwsd/test

Tor Lillqvist tml at collabora.com
Wed Sep 21 15:45:50 UTC 2016


 loolwsd/test/test.cpp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 857c3c4f044f1e4d323576532364c890c7de283e
Author: Tor Lillqvist <tml at collabora.com>
Date:   Wed Sep 21 18:44:02 2016 +0300

    Check LOOL_NO_LOGCOLOR here, too
    
    Note that just like for loolwsd, LOOL_NO_LOGCOLOR is effective only
    when stderr is not going to a terminal. If it goes to a terminal, there
    is no way to avoid use of color, see Log::initialize().

diff --git a/loolwsd/test/test.cpp b/loolwsd/test/test.cpp
index a8c697c..60d694f 100644
--- a/loolwsd/test/test.cpp
+++ b/loolwsd/test/test.cpp
@@ -72,7 +72,7 @@ bool filterTests(CPPUNIT_NS::TestRunner& runner, CPPUNIT_NS::Test* testRegistry)
 
 int main(int /*argc*/, char** /*argv*/)
 {
-    Log::initialize("tst", "trace", true, false);
+    Log::initialize("tst", "trace", !std::getenv("LOOL_NO_LOGCOLOR"), false);
 
 
     CPPUNIT_NS::TestResult controller;


More information about the Libreoffice-commits mailing list