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