From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: "Claudio Fontana" <cfontana@suse.de>,
qemu-devel@nongnu.org,
"Marc-André Lureau" <marcandre.lureau@redhat.com>
Cc: lvivier@redhat.com, peter.maydell@linaro.org, thuth@redhat.com,
ehabkost@redhat.com, haxm-team@intel.com, mtosatti@redhat.com,
armbru@redhat.com, r.bolshakov@yadro.com, dovgaluk@ispras.ru,
wenchao.wang@intel.com, pbonzini@redhat.com,
sunilmut@microsoft.com, rth@twiddle.net, alex.bennee@linaro.org,
colin.xu@intel.com
Subject: Re: [PATCH v5 00/14] QEMU cpus.c refactoring part2
Date: Fri, 14 Aug 2020 09:49:22 +0200 [thread overview]
Message-ID: <227a3142-36b8-9f61-b4b5-a45eed68acc4@redhat.com> (raw)
In-Reply-To: <543b7917-1949-9548-6648-c798efaf70ba@suse.de>
On 8/13/20 6:06 PM, Claudio Fontana wrote:
> Any current infra work that could cause this failure?
>
> I do not have problems when testing this set of commands locally,
> for me it's all green.
Marc-André tried to debug this, but is having hard time reproducing.
>
> Thanks,
>
> Claudio
>
> On 8/13/20 4:16 PM, no-reply@patchew.org wrote:
>> Patchew URL: https://patchew.org/QEMU/20200812183250.9221-1-cfontana@suse.de/
>>
>>
>>
>> Hi,
>>
>> This series failed the docker-quick@centos7 build test. Please find the testing commands and
>> their output below. If you have Docker installed, you can probably reproduce it
>> locally.
>>
>> === TEST SCRIPT BEGIN ===
>> #!/bin/bash
>> make docker-image-centos7 V=1 NETWORK=1
>> time make docker-test-quick@centos7 SHOW_ENV=1 J=14 NETWORK=1
>> === TEST SCRIPT END ===
>>
>> TEST check-unit: tests/test-char
>> Unexpected error in object_property_try_add() at /tmp/qemu-test/src/qom/object.c:1181:
>> attempt to add duplicate property 'serial-id' to object (type 'container')
>> ERROR test-char - too few tests run (expected 38, got 9)
>> make: *** [check-unit] Error 1
>> make: *** Waiting for unfinished jobs....
>> TEST check-qtest-x86_64: tests/qtest/hd-geo-test
>> qemu-system-aarch64: -accel kvm: invalid accelerator kvm
>> ---
>> raise CalledProcessError(retcode, cmd)
>> subprocess.CalledProcessError: Command '['sudo', '-n', 'docker', 'run', '--label', 'com.qemu.instance.uuid=e2cd2d5f1f1d4eb6bc6bcd79e3d16404', '-u', '1001', '--security-opt', 'seccomp=unconfined', '--rm', '-e', 'TARGET_LIST=', '-e', 'EXTRA_CONFIGURE_OPTS=', '-e', 'V=', '-e', 'J=14', '-e', 'DEBUG=', '-e', 'SHOW_ENV=1', '-e', 'CCACHE_DIR=/var/tmp/ccache', '-v', '/home/patchew/.cache/qemu-docker-ccache:/var/tmp/ccache:z', '-v', '/var/tmp/patchew-tester-tmp-2np4x1wq/src/docker-src.2020-08-13-10.00.40.11908:/var/tmp/qemu:z,ro', 'qemu/centos7', '/var/tmp/qemu/run', 'test-quick']' returned non-zero exit status 2.
>> filter=--filter=label=com.qemu.instance.uuid=e2cd2d5f1f1d4eb6bc6bcd79e3d16404
>> make[1]: *** [docker-run] Error 1
>> make[1]: Leaving directory `/var/tmp/patchew-tester-tmp-2np4x1wq/src'
>> make: *** [docker-run-test-quick@centos7] Error 2
>>
>> real 15m49.276s
>> user 0m8.608s
>>
>>
>> The full log is available at
>> http://patchew.org/logs/20200812183250.9221-1-cfontana@suse.de/testing.docker-quick@centos7/?type=message.
>> ---
>> Email generated automatically by Patchew [https://patchew.org/].
>> Please send your feedback to patchew-devel@redhat.com
>>
>
prev parent reply other threads:[~2020-08-14 7:50 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-12 18:32 [PATCH v5 00/14] QEMU cpus.c refactoring part2 Claudio Fontana
2020-08-12 18:32 ` [PATCH v5 01/14] cpu-timers, icount: new modules Claudio Fontana
2020-08-14 20:20 ` Richard Henderson
2020-08-19 13:49 ` Claudio Fontana
2020-08-12 18:32 ` [PATCH v5 02/14] cpus: prepare new CpusAccel cpu accelerator interface Claudio Fontana
2020-08-14 20:28 ` Richard Henderson
2020-08-19 13:49 ` Claudio Fontana
2020-08-12 18:32 ` [PATCH v5 03/14] cpus: extract out TCG-specific code to accel/tcg Claudio Fontana
2020-08-14 20:39 ` Richard Henderson
2020-08-19 13:49 ` Claudio Fontana
2020-08-12 18:32 ` [PATCH v5 04/14] cpus: extract out qtest-specific code to accel/qtest Claudio Fontana
2020-08-14 20:42 ` Richard Henderson
2020-08-12 18:32 ` [PATCH v5 05/14] cpus: extract out kvm-specific code to accel/kvm Claudio Fontana
2020-08-14 20:44 ` Richard Henderson
2020-08-12 18:32 ` [PATCH v5 06/14] cpus: extract out hax-specific code to target/i386/ Claudio Fontana
2020-08-14 20:48 ` Richard Henderson
2020-08-12 18:32 ` [PATCH v5 07/14] cpus: extract out whpx-specific " Claudio Fontana
2020-08-14 20:49 ` Richard Henderson
2020-08-12 18:32 ` [PATCH v5 08/14] cpus: extract out hvf-specific code to target/i386/hvf/ Claudio Fontana
2020-08-14 20:51 ` Richard Henderson
2020-08-12 18:32 ` [PATCH v5 09/14] cpus: cleanup now unneeded includes Claudio Fontana
2020-08-14 20:51 ` Richard Henderson
2020-08-12 18:32 ` [PATCH v5 10/14] cpus: add handle_interrupt to the CpusAccel interface Claudio Fontana
2020-08-14 21:01 ` Richard Henderson
2020-08-17 12:31 ` Roman Bolshakov
2020-08-19 13:50 ` Claudio Fontana
2020-08-12 18:32 ` [PATCH v5 11/14] hvf: remove hvf specific functions from global includes Claudio Fontana
2020-08-14 21:02 ` Richard Henderson
2020-08-12 18:32 ` [PATCH v5 12/14] whpx: remove whpx " Claudio Fontana
2020-08-14 21:03 ` Richard Henderson
2020-08-12 18:32 ` [PATCH v5 13/14] hax: remove hax " Claudio Fontana
2020-08-14 21:06 ` Richard Henderson
2020-08-12 18:32 ` [PATCH v5 14/14] kvm: remove kvm " Claudio Fontana
2020-08-14 21:07 ` Richard Henderson
2020-08-13 14:16 ` [PATCH v5 00/14] QEMU cpus.c refactoring part2 no-reply
2020-08-13 16:06 ` Claudio Fontana
2020-08-14 7:49 ` Philippe Mathieu-Daudé [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=227a3142-36b8-9f61-b4b5-a45eed68acc4@redhat.com \
--to=philmd@redhat.com \
--cc=alex.bennee@linaro.org \
--cc=armbru@redhat.com \
--cc=cfontana@suse.de \
--cc=colin.xu@intel.com \
--cc=dovgaluk@ispras.ru \
--cc=ehabkost@redhat.com \
--cc=haxm-team@intel.com \
--cc=lvivier@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=mtosatti@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=r.bolshakov@yadro.com \
--cc=rth@twiddle.net \
--cc=sunilmut@microsoft.com \
--cc=thuth@redhat.com \
--cc=wenchao.wang@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).