This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_cross_check_gcc/master-aarch64 in repository toolchain/ci/qemu.
from de8ed1055c Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi- [...] adds f7ade77931 tests/acceptance: add replay kernel test for s390x adds 27f551135e tests/acceptance: add replay kernel test for openrisc adds ce9771f5a4 tests/acceptance: add replay kernel test for nios2 adds 7f7c382a4d tests/acceptance: add replay kernel test for alpha adds 82184f4018 tests/acceptance: Linux boot test for record/replay adds 8adacf7fa9 Acceptance tests: add myself as a reviewer for the acceptance tests adds 1f1fcf0c57 Acceptance Tests: add standard clean up at test tearDown() adds 20bf915418 avocado_qemu: standardize super() call following PEP3135 adds e410bac070 avocado_qemu: fix import module based on isort adds 22e82e0982 avocado_qemu: tweak ssh connect method adds 6c58af2e17 avocado_qemu: explicitly return None to avoid R1710 adds e519df437a avocado_qemu: fix inheritance order on LinuxTest class adds 23022794de tests/Makefile: allow control over tags during check-acceptance adds 6676f18fa5 docs/devel/testing: add instruction to run a single acceptance test adds 94c714620b tests/Makefile: add AVOCADO_TESTS option to make check-acceptance adds c5f0a81650 qemu: Split machine_ppc.py acceptance tests adds 181e1ab2ad Acceptance Tests: improve check-acceptance description adds 0f981d8792 acceptance/tests/vnc.py: use explicit syntax for enabling passwords adds 6f1f86cfa7 tests/acceptance/boot_xen.py: removed unused import adds 089f25877f tests/acceptance/ppc_prep_40p.py: NetBSD 7.1.2 location update adds 3d2ec56550 tests/acceptance/ppc_prep_40p.py: clean up unused import adds 4c5fc0c5fc tests/acceptance: Test powernv machines adds 14f02d8a9e Merge remote-tracking branch 'remotes/philmd/tags/integratio [...] adds a093a65567 python/aqmp: add asynchronous QMP (AQMP) subpackage adds fbfb6a37a3 python/aqmp: add error classes adds 35b9a85ade python/pylint: Add exception for TypeVar names ('T') adds a07616d612 python/aqmp: add asyncio compatibility wrappers adds 4ccaab0377 python/aqmp: add generic async message-based protocol support adds c58b42e095 python/aqmp: add runstate state machine to AsyncProtocol adds c1408345af python/aqmp: Add logging utility helpers adds 50e533061f python/aqmp: add logging to AsyncProtocol adds 774c64a58d python/aqmp: add AsyncProtocol.accept() method adds 2686ac1316 python/aqmp: add configurable read buffer limit adds 12c7a57f5b python/aqmp: add _cb_inbound and _cb_outbound logging hooks adds 762bd4d7a7 python/aqmp: add AsyncProtocol._readline() method adds 08f98a2231 python/aqmp: add QMP Message format adds ad07299941 python/aqmp: add well-known QMP object models adds b3cda213a7 python/aqmp: add QMP event support adds 29a8ea9ba2 python/pylint: disable too-many-function-args adds c67d696b85 python/aqmp: add QMP protocol support adds 4cd17f375d python/pylint: disable no-member check adds 577737be55 python/aqmp: Add message routing to QMP protocol adds e0fea0b3ac python/aqmp: add execute() interfaces adds 41f4f92260 python/aqmp: add _raw() execution interface adds debbabd77f python/aqmp: add asyncio_run compatibility wrapper adds ed6d4d7a95 python/aqmp: add scary message adds 4320f7172f python: bump avocado to v90.0 adds a1f71b61ea python/aqmp: add AsyncProtocol unit tests adds 8193b9d148 python/aqmp: add LineProtocol tests adds a4ffaecd57 python/aqmp: Add Coverage.py support adds 974e2f4722 python: Add dependencies for AQMP TUI adds aeb6b48a47 python/aqmp-tui: Add AQMP TUI adds 35755f7d4f python: Add entry point for aqmp-tui adds f37c34d601 python: add optional pygments dependency adds 99e45a6131 python/aqmp-tui: Add syntax highlighting adds 6b54a31bf7 Merge remote-tracking branch 'remotes/jsnow-gitlab/tags/pyth [...]
No new revisions were added by this update.
Summary of changes: MAINTAINERS | 6 +- docs/devel/testing.rst | 69 +++ python/.gitignore | 5 + python/Makefile | 9 + python/Pipfile.lock | 28 +- python/avocado.cfg | 3 + python/qemu/aqmp/__init__.py | 59 ++ python/qemu/aqmp/aqmp_tui.py | 652 +++++++++++++++++++++ python/qemu/aqmp/error.py | 50 ++ python/qemu/aqmp/events.py | 706 +++++++++++++++++++++++ python/qemu/aqmp/message.py | 209 +++++++ python/qemu/aqmp/models.py | 133 +++++ python/qemu/aqmp/protocol.py | 902 ++++++++++++++++++++++++++++++ python/qemu/{machine => aqmp}/py.typed | 0 python/qemu/aqmp/qmp_client.py | 621 ++++++++++++++++++++ python/qemu/aqmp/util.py | 217 +++++++ python/setup.cfg | 43 +- python/tests/protocol.py | 583 +++++++++++++++++++ tests/Makefile.include | 19 +- tests/acceptance/avocado_qemu/__init__.py | 30 +- tests/acceptance/boot_linux_console.py | 35 ++ tests/acceptance/boot_xen.py | 1 - tests/acceptance/machine_ppc.py | 69 --- tests/acceptance/ppc_mpc8544ds.py | 32 ++ tests/acceptance/ppc_prep_40p.py | 5 +- tests/acceptance/ppc_pseries.py | 35 ++ tests/acceptance/ppc_virtex_ml507.py | 34 ++ tests/acceptance/replay_kernel.py | 54 ++ tests/acceptance/replay_linux.py | 116 ++++ tests/acceptance/vnc.py | 2 +- 30 files changed, 4623 insertions(+), 104 deletions(-) create mode 100644 python/qemu/aqmp/__init__.py create mode 100644 python/qemu/aqmp/aqmp_tui.py create mode 100644 python/qemu/aqmp/error.py create mode 100644 python/qemu/aqmp/events.py create mode 100644 python/qemu/aqmp/message.py create mode 100644 python/qemu/aqmp/models.py create mode 100644 python/qemu/aqmp/protocol.py copy python/qemu/{machine => aqmp}/py.typed (100%) create mode 100644 python/qemu/aqmp/qmp_client.py create mode 100644 python/qemu/aqmp/util.py create mode 100644 python/tests/protocol.py delete mode 100644 tests/acceptance/machine_ppc.py create mode 100644 tests/acceptance/ppc_mpc8544ds.py create mode 100644 tests/acceptance/ppc_pseries.py create mode 100644 tests/acceptance/ppc_virtex_ml507.py create mode 100644 tests/acceptance/replay_linux.py