File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -499,6 +499,7 @@ def test_atomic_cursor_python_cpp_work_stealing_cursor_created_by_py():
499499 stdout , stderr = cpp_consumer_proc .communicate ()
500500
501501 print (stdout .decode ())
502+ print (stderr .decode ())
502503 if cpp_consumer_proc .returncode != 0 :
503504 print (stderr , file = sys .stderr )
504505 raise RuntimeError (f"C++ consumer failed with code { cpp_consumer_proc .returncode } " )
@@ -585,6 +586,7 @@ def test_atomic_cursor_python_cpp_work_stealing_cursor_created_by_py():
585586 stdout , stderr = cpp_consumer_proc .communicate ()
586587
587588 print (stdout .decode ())
589+ print (stderr .decode ())
588590 if cpp_consumer_proc .returncode != 0 :
589591 print (stderr , file = sys .stderr )
590592 raise RuntimeError (f"C++ consumer failed with code { cpp_consumer_proc .returncode } " )
@@ -667,6 +669,7 @@ def test_atomic_cursor_python_cpp_work_stealing_cursor_created_by_cpp():
667669 stdout , stderr = cpp_consumer_proc .communicate ()
668670
669671 print (stdout .decode ())
672+ print (stderr .decode ())
670673 if cpp_consumer_proc .returncode != 0 :
671674 print (stderr , file = sys .stderr )
672675 raise RuntimeError (f"C++ consumer failed with code { cpp_consumer_proc .returncode } " )
You can’t perform that action at this time.
0 commit comments