summary refs log tree commit diff stats
path: root/tests/functional/aarch64/test_migration.py
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2025-08-19 13:23:42 +0200
committerThomas Huth <thuth@redhat.com>2025-08-27 09:46:55 +0200
commit96ced85b0c5664426518ad43f0e423092fbee933 (patch)
treef4d97948d5beef295c6e354da96a62e0d05d4226 /tests/functional/aarch64/test_migration.py
parent9c9efb1e36ddb2e636c7f6aafda49cddaee88a0c (diff)
downloadfocaccia-qemu-96ced85b0c5664426518ad43f0e423092fbee933.tar.gz
focaccia-qemu-96ced85b0c5664426518ad43f0e423092fbee933.zip
tests/functional: Move aarch64 tests into architecture specific folder
The tests/functional folder has become quite crowded already, some
restructuring would be helpful here. Thus move the aarch64 tests into
a target-specific subfolder.

Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-ID: <20250819112403.432587-6-thuth@redhat.com>
Diffstat (limited to 'tests/functional/aarch64/test_migration.py')
-rwxr-xr-xtests/functional/aarch64/test_migration.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/functional/aarch64/test_migration.py b/tests/functional/aarch64/test_migration.py
new file mode 100755
index 0000000000..70267e756d
--- /dev/null
+++ b/tests/functional/aarch64/test_migration.py
@@ -0,0 +1,26 @@
+#!/usr/bin/env python3
+#
+# SPDX-License-Identifier: GPL-2.0-or-later
+#
+# aarch64 migration test
+
+from migration import MigrationTest
+
+
+class Aarch64MigrationTest(MigrationTest):
+
+    def test_migration_with_tcp_localhost(self):
+        self.set_machine('quanta-gsj')
+        self.migration_with_tcp_localhost()
+
+    def test_migration_with_unix(self):
+        self.set_machine('quanta-gsj')
+        self.migration_with_unix()
+
+    def test_migration_with_exec(self):
+        self.set_machine('quanta-gsj')
+        self.migration_with_exec()
+
+
+if __name__ == '__main__':
+    MigrationTest.main()