Changeset: c9b0525579c3 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/c9b0525579c3
Modified Files:
clients/mapilib/Tests/tlssecurity.py
Branch: monetdburl
Log Message:
Enable verbose logging in tlssecurity test
It will now fail even if it succeeds but at least we know what's going on
diffs (17 lines):
diff --git a/clients/mapilib/Tests/tlssecurity.py
b/clients/mapilib/Tests/tlssecurity.py
--- a/clients/mapilib/Tests/tlssecurity.py
+++ b/clients/mapilib/Tests/tlssecurity.py
@@ -9,8 +9,11 @@ import threading
sys.path.append(os.environ.get('TSTSRCDIR','.'))
import tlstester
-logging.basicConfig(level=logging.WARNING)
-# logging.basicConfig(level=logging.DEBUG)
+level = logging.WARNING
+if sys.platform == 'win32':
+ level=logging.DEBUG
+#level = logging.DEBUG
+logging.basicConfig(level=level)
tgtdir = os.environ['TSTTRGDIR']
assert os.path.isdir(tgtdir)
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]