qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Alex Bennée" <alex.bennee@linaro.org>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: Pbonzini@redhat.com, QEMU Developers <qemu-devel@nongnu.org>
Subject: Re: [PULL v2 00/11] testing and configure updates
Date: Fri, 18 Dec 2020 17:17:53 +0000	[thread overview]
Message-ID: <878s9vqbh4.fsf@linaro.org> (raw)
In-Reply-To: <87blerqblh.fsf@linaro.org>


Alex Bennée <alex.bennee@linaro.org> writes:

> Peter Maydell <peter.maydell@linaro.org> writes:
>
>> On Fri, 18 Dec 2020 at 11:54, Alex Bennée <alex.bennee@linaro.org> wrote:
>>>
>>>
>>> Peter Maydell <peter.maydell@linaro.org> writes:
>>> > No, the 'alldbg' build is the one that does do a 'make clean';
>>> > the build-not-from-clean build worked (presumably because the
>>> > old executable was still left in place from the previous build).
>>>
>>> Hmm I wonder if it's related to the configure options then. What's your
>>> configure setup for that build?
>>
>> '../../configure' '--cc=ccache gcc' '--enable-debug'
>> '--python=python3'
>
> So I did the following:
>
>   git checkout af3f37319cb1e1ca0c42842ecdbd1bcfc64a4b6f
>   cd build/bisect
>   rm -rf *
>   '../../configure' '--cc=ccache gcc' '--enable-debug' '--python=python3'
>   make -j30
>   make check-qtest
>
> All ok, then
>
>    git checkout pull-testing-171220-2
>    cd build/bisect
>    make clean
>    ag -r "moxie" | wc -l
>
> And sure enough there is a lot of detritus left (21 lines by ag's
> counting). However:
>
>   make -j30
>   make check-qtest
>
> still passes and doesn't attempt to do anything with moxie. So I'm kind
> of stuck as to what to do now? Maybe we can compare detritus and see
> what is left in your tree that causes the test system to get confused
> and make "clean" really mean it.
>
>   $ ag -l -r "moxie"
>   Makefile.ninja
>   moxie-softmmu-config-target.h
>   qapi/qapi-visit-misc-target.c
>   qapi/qapi-events-misc-target.h
>   qapi/qapi-types-machine.h
>   qapi/qapi-introspect.c
>   qapi/qapi-types-misc-target.h
>   qapi/qapi-visit-machine.c
>   qapi/qapi-visit-misc-target.h
>   qapi/qapi-events-misc-target.c
>   qapi/qapi-types-machine.c
>   meson-info/intro-buildsystem_files.json
>   docs/qemu-qmp-ref.7
>   docs/interop/qemu-qmp-ref.html
>   docs/system/deprecated.html
>   docs/system/index.html
>   moxie-softmmu-config-devices.mak
>   moxie-softmmu-config-devices.h
>   build.ninja
>
> I'm surprised about build.ninja and Makefile.ninja? Don't they get
> regenerated by the configure?

Even weirder, re-run configure and the list grows!

  $ ag -l -r "moxie"
  Makefile.ninja
  moxie-softmmu-config-target.h
  qapi/qapi-visit-misc-target.c
  qapi/qapi-events-misc-target.h
  qapi/qapi-types-machine.h
  qapi/qapi-introspect.c
  qapi/qapi-types-misc-target.h
  qapi/qapi-visit-machine.c
  qapi/qapi-visit-misc-target.h
  qapi/qapi-events-misc-target.c
  qapi/qapi-types-machine.c
  meson-info/intro-buildsystem_files.json
  docs/qemu-qmp-ref.7
  docs/interop/qemu-qmp-ref.html
  docs/system/deprecated.html
  docs/system/index.html
  moxie-softmmu-config-devices.mak
  meson-private/microblazeel-softmmu-config-devices.mak.d
  meson-private/sh4eb-softmmu-config-devices.mak.d
  meson-private/xtensa-softmmu-config-devices.mak.d
  meson-private/mips64-softmmu-config-devices.mak.d
  meson-private/nios2-softmmu-config-devices.mak.d
  meson-private/rx-softmmu-config-devices.mak.d
  meson-private/tricore-softmmu-config-devices.mak.d
  meson-private/s390x-softmmu-config-devices.mak.d
  meson-private/microblaze-softmmu-config-devices.mak.d
  meson-private/riscv64-softmmu-config-devices.mak.d
  meson-private/riscv32-softmmu-config-devices.mak.d
  meson-private/sparc64-softmmu-config-devices.mak.d
  meson-private/arm-softmmu-config-devices.mak.d
  meson-private/xtensaeb-softmmu-config-devices.mak.d
  meson-private/sh4-softmmu-config-devices.mak.d
  meson-private/mips-softmmu-config-devices.mak.d
  meson-private/or1k-softmmu-config-devices.mak.d
  meson-private/sparc-softmmu-config-devices.mak.d
  meson-private/x86_64-softmmu-config-devices.mak.d
  meson-private/avr-softmmu-config-devices.mak.d
  meson-private/mips64el-softmmu-config-devices.mak.d
  meson-private/mipsel-softmmu-config-devices.mak.d
  meson-private/ppc-softmmu-config-devices.mak.d
  meson-private/aarch64-softmmu-config-devices.mak.d
  meson-private/i386-softmmu-config-devices.mak.d
  meson-private/alpha-softmmu-config-devices.mak.d
  meson-private/ppc64-softmmu-config-devices.mak.d
  meson-private/hppa-softmmu-config-devices.mak.d
  meson-private/m68k-softmmu-config-devices.mak.d
  meson-private/cris-softmmu-config-devices.mak.d
  moxie-softmmu-config-devices.h
  build.ninja

-- 
Alex Bennée


  reply	other threads:[~2020-12-18 17:22 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-17  9:43 [PULL v2 00/11] testing and configure updates Alex Bennée
2020-12-17 18:48 ` Peter Maydell
2020-12-17 23:41   ` Alex Bennée
2020-12-18 11:12     ` Peter Maydell
2020-12-18 11:53       ` Alex Bennée
2020-12-18 13:40         ` Peter Maydell
2020-12-18 16:52           ` Alex Bennée
2020-12-18 17:17             ` Alex Bennée [this message]
2020-12-18 17:23               ` Paolo Bonzini

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=878s9vqbh4.fsf@linaro.org \
    --to=alex.bennee@linaro.org \
    --cc=Pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /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).