This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/llvm-master-aarch64-next-allnoconfig in repository toolchain/ci/qemu.
from 7b09f12773 Merge remote-tracking branch 'remotes/pmaydell/tags/pull-tar [...] new b115ea3a0d gitlab-ci.yml: Add openSUSE Leap 15.2 for gitlab CI/CD new 661465c2e0 qtest/libqtest: fix heap-buffer-overflow in qtest_cb_for_eve [...] new 124bd3e0a8 util/oslib-win32: Fix _aligned_malloc() arguments order new 22ec0c696f fuzz: accelerate non-crash detection new 7b339f287f fuzz: double the IOs to remove for every loop new e72203abec fuzz: split write operand using binary approach new 247ab240c2 fuzz: remove IO commands iteratively new 9d20f2af53 fuzz: set bits in operand of write/out to zero new dd21ed0edf fuzz: add minimization options new 4cc5752303 fuzz: heuristic split write based on past IOs new 4d306e59cb bsd-user: regenerate FreeBSD's system call numbers new ea1ab4cf2c bsd-user: move strace OS/arch dependent code to host/arch dirs new f6eb4a0841 bsd-user: Update strace.list for FreeBSD's latest syscalls new 333168efe5 tests/acceptance: Fix race conditions in s390x tests & skip [...] new b677001d70 fuzz: map all BARs and enable PCI devices new b3f846c59d Merge remote-tracking branch 'remotes/huth-gitlab/tags/pull- [...]
The 16 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: .gitlab-ci.d/containers.yml | 5 + .gitlab-ci.yml | 31 ++ bsd-user/arm/target_arch_sysarch.h | 78 +++ bsd-user/arm/target_syscall.h | 36 ++ bsd-user/{signal.c => freebsd/os-strace.h} | 17 +- bsd-user/freebsd/strace.list | 65 ++- bsd-user/freebsd/syscall_nr.h | 695 ++++++++++++++------------ bsd-user/i386/target_arch_sysarch.h | 77 +++ bsd-user/i386/target_syscall.h | 19 + bsd-user/mips/target_arch_sysarch.h | 69 +++ bsd-user/mips/target_syscall.h | 52 ++ bsd-user/mips64/target_arch_sysarch.h | 69 +++ bsd-user/mips64/target_syscall.h | 53 ++ bsd-user/netbsd/os-strace.h | 1 + bsd-user/openbsd/os-strace.h | 1 + bsd-user/sparc/target_arch_sysarch.h | 52 ++ bsd-user/sparc/target_syscall.h | 24 +- bsd-user/sparc64/target_arch_sysarch.h | 52 ++ bsd-user/sparc64/target_syscall.h | 24 +- bsd-user/strace.c | 11 + bsd-user/x86_64/target_arch_sysarch.h | 76 +++ bsd-user/x86_64/target_syscall.h | 21 +- meson.build | 1 + scripts/oss-fuzz/minimize_qtest_trace.py | 260 ++++++++-- tests/acceptance/machine_s390_ccw_virtio.py | 14 +- tests/docker/dockerfiles/opensuse-leap.docker | 55 ++ tests/qtest/fuzz/generic_fuzz.c | 24 + tests/qtest/libqtest.c | 2 +- util/oslib-win32.c | 2 +- 29 files changed, 1500 insertions(+), 386 deletions(-) create mode 100644 bsd-user/arm/target_arch_sysarch.h create mode 100644 bsd-user/arm/target_syscall.h copy bsd-user/{signal.c => freebsd/os-strace.h} (60%) create mode 100644 bsd-user/i386/target_arch_sysarch.h create mode 100644 bsd-user/mips/target_arch_sysarch.h create mode 100644 bsd-user/mips/target_syscall.h create mode 100644 bsd-user/mips64/target_arch_sysarch.h create mode 100644 bsd-user/mips64/target_syscall.h create mode 100644 bsd-user/netbsd/os-strace.h create mode 100644 bsd-user/openbsd/os-strace.h create mode 100644 bsd-user/sparc/target_arch_sysarch.h create mode 100644 bsd-user/sparc64/target_arch_sysarch.h create mode 100644 bsd-user/x86_64/target_arch_sysarch.h create mode 100644 tests/docker/dockerfiles/opensuse-leap.docker