[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 00/23] qtests, gitlab-CI and misc patches
From: |
Thomas Huth |
Subject: |
[PULL 00/23] qtests, gitlab-CI and misc patches |
Date: |
Tue, 13 Oct 2020 12:55:04 +0200 |
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
- [PULL 00/23] qtests, gitlab-CI and misc patches,
Thomas Huth <=
- [PULL 01/23] tests/qtest: Replace magic value by NANOSECONDS_PER_SECOND definition, Thomas Huth, 2020/10/13
- [PULL 02/23] gitlab-ci.yml: Only run one test-case per fuzzer, Thomas Huth, 2020/10/13
- [PULL 03/23] Acceptance tests: bump pycdlib version for easier installation, Thomas Huth, 2020/10/13
- [PULL 04/23] Acceptance tests: do not show canceled test logs on GitLab CI, Thomas Huth, 2020/10/13
- [PULL 05/23] Acceptance tests: show test report on GitLab CI, Thomas Huth, 2020/10/13
- [PULL 06/23] qtest: add fuzz test case, Thomas Huth, 2020/10/13
- [PULL 08/23] softmmu/vl: Be less verbose about missing KVM when running the qtests, Thomas Huth, 2020/10/13
- [PULL 13/23] configure: fixes indent of $meson setup, Thomas Huth, 2020/10/13
- [PULL 12/23] docs/system/deprecated: Mark the 'moxie' CPU as deprecated, Thomas Huth, 2020/10/13
- [PULL 09/23] Add a comment in bios-tables-test.c to clarify the reason behind approach, Thomas Huth, 2020/10/13