qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Thomas Huth <thuth@redhat.com>
To: qemu-devel@nongnu.org, Peter Maydell <peter.maydell@linaro.org>
Cc: Cleber Rosa <crosa@redhat.com>
Subject: [PULL 00/23] qtests, gitlab-CI and misc patches
Date: Tue, 13 Oct 2020 12:55:04 +0200	[thread overview]
Message-ID: <20201013105527.20088-1-thuth@redhat.com> (raw)

 Hi Peter,
 
the following changes since commit a0bdf866873467271eff9a92f179ab0f77d735cb:

  Merge remote-tracking branch 'remotes/dgilbert/tags/pull-migration-20201012a' into staging (2020-10-12 13:12:04 +0100)

are available in the Git repository at:

  https://gitlab.com/huth/qemu.git tags/pull-request-2020-10-13

for you to fetch changes up to ea8bf1e514d2f442dd1a008794eb1563e2ee1c48:

  scripts/ci/gitlab-pipeline-status: wait for pipeline creation (2020-10-13 12:48:17 +0200)

----------------------------------------------------------------
* qtest improvements (test for crash found with the fuzzer, increase
  downtime in migration test, less verbose output when running w/o KVM)
* Improve handling of acceptance tests in the Gitlab-CI
* Run checkpatch.pl in the Gitlab-CI
* Improve the gitlab-pipeline-status script
* Misc patches (mark 'moxie' as deprecated, remove stale .gitignore files, ...)
----------------------------------------------------------------

Alexander Bulekov (1):
      gitlab-ci.yml: Only run one test-case per fuzzer

Ani Sinha (1):
      Add a comment in bios-tables-test.c to clarify the reason behind approach

Cleber Rosa (10):
      Acceptance tests: bump pycdlib version for easier installation
      Acceptance tests: do not show canceled test logs on GitLab CI
      Acceptance tests: show test report on GitLab CI
      scripts/ci/gitlab-pipeline-status: make branch name configurable
      scripts/ci/gitlab-pipeline-status: improve message regarding timeout
      scripts/ci/gitlab-pipeline-status: give early feedback on running pipelines
      scripts/ci/gitlab-pipeline-status: refactor parser creation
      scripts/ci/gitlab-pipeline-status: handle keyboard interrupts
      scripts/ci/gitlab-pipeline-status: use more descriptive exceptions
      scripts/ci/gitlab-pipeline-status: wait for pipeline creation

Daniel P. Berrangé (3):
      gitlab: add a CI job for running checkpatch.pl
      gitlab: add a CI job to validate the DCO sign off
      gitlab: assign python helper files to GitLab maintainers section

Dr. David Alan Gilbert (1):
      tests/migration: Allow longer timeouts

Li Qiang (1):
      qtest: add fuzz test case

Philippe Mathieu-Daudé (1):
      tests/qtest: Replace magic value by NANOSECONDS_PER_SECOND definition

Thomas Huth (4):
      softmmu/vl: Be less verbose about missing KVM when running the qtests
      MAINTAINERS: Ignore bios-tables-test in the qtest section
      Remove superfluous .gitignore files
      docs/system/deprecated: Mark the 'moxie' CPU as deprecated

Yonggang Luo (1):
      configure: fixes indent of $meson setup

 .gitlab-ci.d/check-dco.py         | 94 +++++++++++++++++++++++++++++++++++++++
 .gitlab-ci.d/check-patch.py       | 48 ++++++++++++++++++++
 .gitlab-ci.yml                    | 31 ++++++++++++-
 MAINTAINERS                       |  3 +-
 configure                         | 14 +++---
 docs/system/deprecated.rst        |  8 ++++
 pc-bios/keymaps/.gitignore        |  1 -
 plugins/.gitignore                |  2 -
 scripts/ci/gitlab-pipeline-status | 63 ++++++++++++++++++--------
 softmmu/vl.c                      | 19 +++++---
 tests/.gitignore                  | 32 -------------
 tests/fp/.gitignore               |  2 -
 tests/migration/.gitignore        |  2 -
 tests/multiboot/.gitignore        |  3 --
 tests/qemu-iotests/.gitignore     |  9 ----
 tests/qtest/bios-tables-test.c    |  7 ++-
 tests/qtest/fuzz-test.c           | 49 ++++++++++++++++++++
 tests/qtest/meson.build           |  1 +
 tests/qtest/migration-test.c      | 21 ++++-----
 tests/qtest/rtc-test.c            |  2 +-
 tests/requirements.txt            |  2 +-
 tests/tcg/.gitignore              |  5 ---
 tests/uefi-test-tools/.gitignore  |  3 --
 23 files changed, 313 insertions(+), 108 deletions(-)
 create mode 100755 .gitlab-ci.d/check-dco.py
 create mode 100755 .gitlab-ci.d/check-patch.py
 delete mode 100644 pc-bios/keymaps/.gitignore
 delete mode 100644 plugins/.gitignore
 delete mode 100644 tests/.gitignore
 delete mode 100644 tests/fp/.gitignore
 delete mode 100644 tests/migration/.gitignore
 delete mode 100644 tests/multiboot/.gitignore
 delete mode 100644 tests/qemu-iotests/.gitignore
 create mode 100644 tests/qtest/fuzz-test.c
 delete mode 100644 tests/tcg/.gitignore
 delete mode 100644 tests/uefi-test-tools/.gitignore



             reply	other threads:[~2020-10-13 10:57 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-13 10:55 Thomas Huth [this message]
2020-10-13 10:55 ` [PULL 01/23] tests/qtest: Replace magic value by NANOSECONDS_PER_SECOND definition Thomas Huth
2020-10-13 10:55 ` [PULL 02/23] gitlab-ci.yml: Only run one test-case per fuzzer Thomas Huth
2020-10-13 10:55 ` [PULL 03/23] Acceptance tests: bump pycdlib version for easier installation Thomas Huth
2020-10-13 10:55 ` [PULL 04/23] Acceptance tests: do not show canceled test logs on GitLab CI Thomas Huth
2020-10-13 10:55 ` [PULL 05/23] Acceptance tests: show test report " Thomas Huth
2020-10-13 10:55 ` [PULL 06/23] qtest: add fuzz test case Thomas Huth
2020-10-13 10:55 ` [PULL 07/23] tests/migration: Allow longer timeouts Thomas Huth
2020-10-13 10:55 ` [PULL 08/23] softmmu/vl: Be less verbose about missing KVM when running the qtests Thomas Huth
2020-10-13 10:55 ` [PULL 09/23] Add a comment in bios-tables-test.c to clarify the reason behind approach Thomas Huth
2020-10-13 10:55 ` [PULL 10/23] MAINTAINERS: Ignore bios-tables-test in the qtest section Thomas Huth
2020-10-13 10:55 ` [PULL 11/23] Remove superfluous .gitignore files Thomas Huth
2020-10-13 10:55 ` [PULL 12/23] docs/system/deprecated: Mark the 'moxie' CPU as deprecated Thomas Huth
2020-10-13 10:55 ` [PULL 13/23] configure: fixes indent of $meson setup Thomas Huth
2020-10-13 10:55 ` [PULL 14/23] gitlab: add a CI job for running checkpatch.pl Thomas Huth
2020-10-13 10:55 ` [PULL 15/23] gitlab: add a CI job to validate the DCO sign off Thomas Huth
2020-10-13 10:55 ` [PULL 16/23] gitlab: assign python helper files to GitLab maintainers section Thomas Huth
2020-10-13 10:55 ` [PULL 17/23] scripts/ci/gitlab-pipeline-status: make branch name configurable Thomas Huth
2020-10-13 10:55 ` [PULL 18/23] scripts/ci/gitlab-pipeline-status: improve message regarding timeout Thomas Huth
2020-10-13 10:55 ` [PULL 19/23] scripts/ci/gitlab-pipeline-status: give early feedback on running pipelines Thomas Huth
2020-10-13 10:55 ` [PULL 20/23] scripts/ci/gitlab-pipeline-status: refactor parser creation Thomas Huth
2020-10-13 10:55 ` [PULL 21/23] scripts/ci/gitlab-pipeline-status: handle keyboard interrupts Thomas Huth
2020-10-13 10:55 ` [PULL 22/23] scripts/ci/gitlab-pipeline-status: use more descriptive exceptions Thomas Huth
2020-10-13 10:55 ` [PULL 23/23] scripts/ci/gitlab-pipeline-status: wait for pipeline creation Thomas Huth
2020-10-13 13:05 ` [PULL 00/23] qtests, gitlab-CI and misc patches Peter Maydell

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=20201013105527.20088-1-thuth@redhat.com \
    --to=thuth@redhat.com \
    --cc=crosa@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).