Package: src:xmodem Version: 0.4.7+dfsg-2 Severity: serious Tags: ftbfs forky sid
Dear maintainer: During a rebuild of all packages in unstable, this package failed to build. Below you will find the last part of the build log (probably the most relevant part, but not necessarily). If required, the full build log is available here: https://people.debian.org/~sanvila/build-logs/202608/ About the archive rebuild: The build was made on virtual machines from AWS, using sbuild and a reduced chroot with only build-essential packages. If you cannot reproduce the bug please contact me privately, as I am willing to provide ssh access to a virtual machine where the bug is fully reproducible. If this is really a bug in one of the build-depends, please use reassign and add an affects on src:xmodem, so that this is still visible in the BTS web page for this package. Thanks. -------------------------------------------------------------------------------- [...] =================================== FAILURES =================================== __________________________ test_xmodem_send_with_lrb ___________________________ @pytest.mark.skipif(recv_prog is None, reason=MISSING_LRB_MSG) def test_xmodem_send_with_lrb(): """ Using external program for receive, verify XMODEM.send(). """ # Given, _, recv_filename = tempfile.mkstemp() try: proc = subprocess.Popen( (recv_prog, '--xmodem', '--verbose', recv_filename), stdin=subprocess.PIPE, stdout=subprocess.PIPE, bufsize=0) getc = functools.partial(_proc_getc, proc=proc) putc = functools.partial(_proc_putc, proc=proc) xmodem = XMODEM(getc, putc, pad=b'\xbb') stream = fill_binary_data(BytesIO()) # Exercise, status = xmodem.send(stream, timeout=5, callback=_send_callback) # Verify, > assert status is True E assert False is True test/functional/test_xmodem_using_lrzsz.py:92: AssertionError ----------------------------- Captured stderr call ----------------------------- rb: Security Violationreceived CAN rb: caught signal -1; exitingreceived CAN _________________________ test_xmodem1k_send_with_lrb __________________________ @pytest.mark.skipif(recv_prog is None, reason=MISSING_LRB_MSG) def test_xmodem1k_send_with_lrb(): """ Using external program for receive, verify XMODEM1k.send(). """ # Given, _, recv_filename = tempfile.mkstemp() try: proc = subprocess.Popen( (recv_prog, '--xmodem', '--verbose', recv_filename), stdin=subprocess.PIPE, stdout=subprocess.PIPE, bufsize=0) getc = functools.partial(_proc_getc, proc=proc) putc = functools.partial(_proc_putc, proc=proc) xmodem = XMODEM1k(getc, putc, pad=b'\xbb') stream = fill_binary_data(BytesIO()) # Exercise, status = xmodem.send(stream, timeout=5, callback=_send_callback) # Verify, > assert status is True E assert False is True test/functional/test_xmodem_using_lrzsz.py:154: AssertionError ----------------------------- Captured stderr call ----------------------------- received CANrb: Security Violation rb: caught signal -1; exitingreceived CAN _____________________ test_xmodem_send_16bit_crc_with_lrb ______________________ @pytest.mark.skipif(recv_prog is None, reason=MISSING_LRB_MSG) def test_xmodem_send_16bit_crc_with_lrb(): """ Using external program for receive, verify XMODEM.send() with 16-bit CRC. """ # Given, _, recv_filename = tempfile.mkstemp() try: proc = subprocess.Popen( (recv_prog, '--xmodem', '--verbose', '--with-crc', recv_filename), stdin=subprocess.PIPE, stdout=subprocess.PIPE, bufsize=0) getc = functools.partial(_proc_getc, proc=proc) putc = functools.partial(_proc_putc, proc=proc) xmodem = XMODEM(getc, putc, pad=b'\xbb') stream = fill_binary_data(BytesIO()) # Exercise, status = xmodem.send(stream, timeout=5, callback=_send_callback) # Verify, > assert status is True E assert False is True test/functional/test_xmodem_using_lrzsz.py:218: AssertionError ----------------------------- Captured stderr call ----------------------------- received CANrb: Security Violation rb: received CANcaught signal -1; exiting =========================== short test summary info ============================ FAILED test/functional/test_xmodem_using_lrzsz.py::test_xmodem_send_with_lrb FAILED test/functional/test_xmodem_using_lrzsz.py::test_xmodem1k_send_with_lrb FAILED test/functional/test_xmodem_using_lrzsz.py::test_xmodem_send_16bit_crc_with_lrb ========================= 3 failed, 21 passed in 1.08s ========================= E: pybuild pybuild:485: test: plugin distutils failed with: exit code=1: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14_xmodem/build; python3.14 -m pytest test dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.14 --parallel=2 returned exit code 13 make: *** [debian/rules:6: binary] Error 25 dpkg-buildpackage: error: debian/rules binary subprocess failed with exit status 2 --------------------------------------------------------------------------------

