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

Don't hide exception and print local and global variables.
In order to find problem on github macos.


diffs (17 lines):

diff --git a/testing/Mtest.py.in b/testing/Mtest.py.in
--- a/testing/Mtest.py.in
+++ b/testing/Mtest.py.in
@@ -1631,7 +1631,12 @@ def GetBitsAndModsAndThreads(env) :
                 except KeyboardInterrupt:
                     raise
                 except:
-                    pass
+                    print('Exception caught')
+                    print('Local variables:')
+                    print(locals())
+                    print('Global variables:')
+                    print(globals())
+                    raise
                 proc.terminate()
                 qOut = proc.stdout.read(timeout=5)
                 qErr = proc.stderr.read(timeout=5)
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to