xref: /openbmc/qemu/tests/functional/arm/test_migration.py (revision 5fc03d4e28258fdf6a926a59c6b5e1edc23e6d5d)
1#!/usr/bin/env python3
2#
3# SPDX-License-Identifier: GPL-2.0-or-later
4#
5# arm migration test
6
7from migration import MigrationTest
8
9
10class ArmMigrationTest(MigrationTest):
11
12    def test_migration_with_tcp_localhost(self):
13        self.set_machine('npcm750-evb')
14        self.migration_with_tcp_localhost()
15
16    def test_migration_with_unix(self):
17        self.set_machine('npcm750-evb')
18        self.migration_with_unix()
19
20    def test_migration_with_exec(self):
21        self.set_machine('npcm750-evb')
22        self.migration_with_exec()
23
24
25if __name__ == '__main__':
26    MigrationTest.main()
27