diff options
author | Phil Wise <phil@advancedtelematic.com> | 2018-06-15 09:48:32 +0200 |
---|---|---|
committer | Patrick Vacek <patrickvacek@gmail.com> | 2018-07-02 10:51:03 +0200 |
commit | 4067c543901526d1d039ba97af6550de48b5b423 (patch) | |
tree | f1bce75b3840b4612259f3745a7f041526fd9228 /lib/oeqa | |
parent | 045ab4d6b4eb58c34a80786736bb802d0d95a18d (diff) | |
download | meta-updater-4067c543901526d1d039ba97af6550de48b5b423.tar.gz |
aktualizr: support check-discovery and fix secondary tests.
Cherry-pick of 78422f6ca6e5cca90e33ad49aa1b39bb25c527b3 from master. Original
commit message follows:
Compatibility with latest aktualizr
Note that the HsmTests still sometimes fail
Diffstat (limited to 'lib/oeqa')
-rw-r--r-- | lib/oeqa/selftest/cases/updater.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/oeqa/selftest/cases/updater.py b/lib/oeqa/selftest/cases/updater.py index 190d85d..08fb696 100644 --- a/lib/oeqa/selftest/cases/updater.py +++ b/lib/oeqa/selftest/cases/updater.py | |||
@@ -554,7 +554,7 @@ class SecondaryTests(OESelftestTestCase): | |||
554 | 554 | ||
555 | def test_secondary_listening(self): | 555 | def test_secondary_listening(self): |
556 | print('Checking aktualizr-secondary service is listening') | 556 | print('Checking aktualizr-secondary service is listening') |
557 | stdout, stderr, retcode = self.qemu_command('echo test | nc localhost 9030') | 557 | stdout, stderr, retcode = self.qemu_command('aktualizr-check-discovery') |
558 | self.assertEqual(retcode, 0, "Unable to connect to secondary") | 558 | self.assertEqual(retcode, 0, "Unable to connect to secondary") |
559 | 559 | ||
560 | 560 | ||