mbox

[PULL,0/7] migration: fix, perf testing framework

Message ID cover.1469174334.git.amit.shah@redhat.com
State New
Headers show

Pull-request

http://git.kernel.org/pub/scm/virt/qemu/amit/migration.git tags/migration-for-2.7-6

Message

Amit Shah July 22, 2016, 8 a.m. UTC
The following changes since commit 206d0c24361a083fbdcb2cc86fb75dc8b7f251a2:

  Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging (2016-07-21 20:12:37 +0100)

are available in the git repository at:

  http://git.kernel.org/pub/scm/virt/qemu/amit/migration.git tags/migration-for-2.7-6

for you to fetch changes up to 409437e16df273fc5f78f6cd1cb53023eaeb9b72:

  tests: introduce a framework for testing migration performance (2016-07-22 13:23:39 +0530)

----------------------------------------------------------------
Migration:
- Fix a postcopy bug
- Add a testsuite for measuring migration performance

----------------------------------------------------------------


Daniel P. Berrange (6):
  scripts: add __init__.py file to scripts/qmp/
  scripts: add a 'debug' parameter to QEMUMonitorProtocol
  scripts: refactor the VM class in iotests for reuse
  scripts: set timeout when waiting for qemu monitor connection
  scripts: ensure monitor socket has SO_REUSEADDR set
  tests: introduce a framework for testing migration performance

Dr. David Alan Gilbert (1):
  migration: set state to post-migrate on failure

 configure                               |   2 +
 migration/migration.c                   |   4 +
 scripts/qemu.py                         | 202 +++++++++++
 scripts/qmp/__init__.py                 |   0
 scripts/qmp/qmp.py                      |  15 +-
 scripts/qtest.py                        |  34 ++
 tests/Makefile.include                  |  12 +
 tests/migration/.gitignore              |   2 +
 tests/migration/guestperf-batch.py      |  26 ++
 tests/migration/guestperf-plot.py       |  26 ++
 tests/migration/guestperf.py            |  27 ++
 tests/migration/guestperf/__init__.py   |   0
 tests/migration/guestperf/comparison.py | 124 +++++++
 tests/migration/guestperf/engine.py     | 439 ++++++++++++++++++++++
 tests/migration/guestperf/hardware.py   |  62 ++++
 tests/migration/guestperf/plot.py       | 623 ++++++++++++++++++++++++++++++++
 tests/migration/guestperf/progress.py   | 117 ++++++
 tests/migration/guestperf/report.py     |  98 +++++
 tests/migration/guestperf/scenario.py   |  95 +++++
 tests/migration/guestperf/shell.py      | 255 +++++++++++++
 tests/migration/guestperf/timings.py    |  55 +++
 tests/migration/stress.c                | 367 +++++++++++++++++++
 tests/qemu-iotests/iotests.py           | 135 +------
 23 files changed, 2587 insertions(+), 133 deletions(-)
 create mode 100644 scripts/qemu.py
 create mode 100644 scripts/qmp/__init__.py
 create mode 100644 tests/migration/.gitignore
 create mode 100755 tests/migration/guestperf-batch.py
 create mode 100755 tests/migration/guestperf-plot.py
 create mode 100755 tests/migration/guestperf.py
 create mode 100644 tests/migration/guestperf/__init__.py
 create mode 100644 tests/migration/guestperf/comparison.py
 create mode 100644 tests/migration/guestperf/engine.py
 create mode 100644 tests/migration/guestperf/hardware.py
 create mode 100644 tests/migration/guestperf/plot.py
 create mode 100644 tests/migration/guestperf/progress.py
 create mode 100644 tests/migration/guestperf/report.py
 create mode 100644 tests/migration/guestperf/scenario.py
 create mode 100644 tests/migration/guestperf/shell.py
 create mode 100644 tests/migration/guestperf/timings.py
 create mode 100644 tests/migration/stress.c

Comments

Amit Shah July 22, 2016, 8 a.m. UTC | #1
From: "Daniel P. Berrange" <berrange@redhat.com>

When searching for modules to load, python will ignore any
sub-directory which does not contain __init__.py. This means
that both scripts and scripts/qmp/ have to be explicitly added
to the python path. By adding a __init__.py file to scripts/qmp,
we only need add scripts/ to the python path and can then simply
do 'from qmp import qmp' to load scripts/qmp/qmp.py.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Message-Id: <1469020993-29426-2-git-send-email-berrange@redhat.com>
Signed-off-by: Amit Shah <amit.shah@redhat.com>
---
 scripts/qmp/__init__.py | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 scripts/qmp/__init__.py

diff --git a/scripts/qmp/__init__.py b/scripts/qmp/__init__.py
new file mode 100644
index 0000000..e69de29
Peter Maydell July 22, 2016, 10:31 a.m. UTC | #2
On 22 July 2016 at 09:00, Amit Shah <amit.shah@redhat.com> wrote:
> The following changes since commit 206d0c24361a083fbdcb2cc86fb75dc8b7f251a2:
>
>   Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging (2016-07-21 20:12:37 +0100)
>
> are available in the git repository at:
>
>   http://git.kernel.org/pub/scm/virt/qemu/amit/migration.git tags/migration-for-2.7-6
>
> for you to fetch changes up to 409437e16df273fc5f78f6cd1cb53023eaeb9b72:
>
>   tests: introduce a framework for testing migration performance (2016-07-22 13:23:39 +0530)
>
> ----------------------------------------------------------------
> Migration:
> - Fix a postcopy bug
> - Add a testsuite for measuring migration performance
>
> ----------------------------------------------------------------
>

Applied, thanks.

-- PMM