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