| 1 | #!/usr/bin/env python3 |
| 2 | # |
| 3 | # SPDX-License-Identifier: GPL-2.0-or-later |
| 4 | # |
| 5 | # ppc migration test |
| 6 | |
| 7 | from qemu_test.ports import Ports |
| 8 | from migration import MigrationTest |
| 9 | |
| 10 | |
| 11 | class PpcMigrationTest(MigrationTest): |
| 12 | |
| 13 | def test_migration_with_tcp_localhost(self): |
| 14 | self.set_machine('mac99') |
| 15 | self.migration_with_tcp_localhost() |
| 16 | |
| 17 | def test_migration_with_unix(self): |
| 18 | self.set_machine('mac99') |
| 19 | self.migration_with_unix() |
| 20 | |
| 21 | def test_migration_with_exec(self): |
| 22 | self.set_machine('mac99') |
| 23 | self.migration_with_exec() |
| 24 | |
| 25 | |
| 26 | if __name__ == '__main__': |
| 27 | MigrationTest.main() |