Changeset: 1f396bd7148c for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/1f396bd7148c
Modified Files:
        testing/Mconvert.py.in
        testing/Mtest.py.in
Branch: default
Log Message:

Mtest.py: show server stderr when Bits, Modules & Threads check fails


diffs (24 lines):

diff --git a/testing/Mconvert.py.in b/testing/Mconvert.py.in
--- a/testing/Mconvert.py.in
+++ b/testing/Mconvert.py.in
@@ -898,6 +898,8 @@ def GetBitsAndModsAndThreads(env) :
         while True:
             proc.poll()
             if proc.returncode is not None:
+                qOut = proc.stdout.read()
+                qErr = proc.stderr.read()
                 break
             if os.path.exists(os.path.join(dbpath, '.started')):
                 break
diff --git a/testing/Mtest.py.in b/testing/Mtest.py.in
--- a/testing/Mtest.py.in
+++ b/testing/Mtest.py.in
@@ -1689,6 +1689,8 @@ def GetBitsAndModsAndThreads(env) :
             while True:
                 proc.poll()
                 if proc.returncode is not None:
+                    qOut = proc.stdout.read()
+                    qErr = proc.stderr.read()
                     break
                 if os.path.exists(os.path.join(dbpath, '.started')):
                     break
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to