master
py 26 lines 590 Bytes
Raw
1 #!/usr/bin/env python3
2 #
3 # SPDX-License-Identifier: GPL-2.0-or-later
4 #
5 # arm migration test
6
7 from migration import MigrationTest
8
9
10 class 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
25 if __name__ == '__main__':
26 MigrationTest.main()