[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH-for-5.0 1/8] Acceptance test: Fix to EXEC migration
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH-for-5.0 1/8] Acceptance test: Fix to EXEC migration |
Date: |
Fri, 3 Apr 2020 19:29:12 +0200 |
From: Oksana Vohchana <address@hidden>
The exec migration test isn't run a whole test scenario.
This patch fixes it
Fixes: 2e768cb682bf
Signed-off-by: Oksana Vohchana <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Tested-by: Wainer dos Santos Moschetta <address@hidden>
Message-Id: <address@hidden>
Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
---
tests/acceptance/migration.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/acceptance/migration.py b/tests/acceptance/migration.py
index a8367ca023..0365289cda 100644
--- a/tests/acceptance/migration.py
+++ b/tests/acceptance/migration.py
@@ -70,8 +70,8 @@ def test_migration_with_unix(self):
@skipUnless(find_command('nc', default=False), "'nc' command not found")
def test_migration_with_exec(self):
- """
- The test works for both netcat-traditional and netcat-openbsd packages
- """
+ """The test works for both netcat-traditional and netcat-openbsd
packages."""
free_port = self._get_free_port()
dest_uri = 'exec:nc -l localhost %u' % free_port
+ src_uri = 'exec:nc localhost %u' % free_port
+ self.do_migrate(dest_uri, src_uri)
--
2.21.1
- [PATCH-for-5.0 0/8] Acceptance tests queue, Philippe Mathieu-Daudé, 2020/04/03
- [PATCH-for-5.0 1/8] Acceptance test: Fix to EXEC migration,
Philippe Mathieu-Daudé <=
- [PATCH-for-5.0 2/8] tests/acceptance/ppc_prep_40p: Use cdn.netbsd.org hostname, Philippe Mathieu-Daudé, 2020/04/03
- [PATCH-for-5.0 3/8] tests/acceptance/ppc_prep_40p: Use mirror for ftp.software.ibm.com, Philippe Mathieu-Daudé, 2020/04/03
- [PATCH-for-5.0 4/8] tests/acceptance/machine_sparc_leon3: Disable HelenOS test, Philippe Mathieu-Daudé, 2020/04/03
- [PATCH-for-5.0 5/8] .travis.yml: Cache acceptance-test assets, Philippe Mathieu-Daudé, 2020/04/03
- [PATCH-for-5.1 6/8] tests/Makefile: Add fetch-acceptance-assets rule, Philippe Mathieu-Daudé, 2020/04/03