summary refs log tree commit diff stats
path: root/tests/functional/sh4/test_r2d.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/sh4/test_r2d.py')
-rwxr-xr-xtests/functional/sh4/test_r2d.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/functional/sh4/test_r2d.py b/tests/functional/sh4/test_r2d.py
new file mode 100755
index 0000000000..03a648374c
--- /dev/null
+++ b/tests/functional/sh4/test_r2d.py
@@ -0,0 +1,29 @@
+#!/usr/bin/env python3
+#
+# Boot a Linux kernel on a r2d sh4 machine and check the console
+#
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+from qemu_test import LinuxKernelTest, Asset, skipFlakyTest
+
+
+class R2dTest(LinuxKernelTest):
+
+    ASSET_DAY09 = Asset(
+        'https://qemu-advcal.gitlab.io/qac-best-of-multiarch/download/day09.tar.xz',
+        'a61b44d2630a739d1380cc4ff4b80981d47ccfd5992f1484ccf48322c35f09ac')
+
+    # This test has a 6-10% failure rate on various hosts that look
+    # like issues with a buggy kernel.
+    # XXX file tracking bug
+    @skipFlakyTest(bug_url=None)
+    def test_r2d(self):
+        self.set_machine('r2d')
+        self.archive_extract(self.ASSET_DAY09)
+        self.vm.add_args('-append', 'console=ttySC1')
+        self.launch_kernel(self.scratch_file('day09', 'zImage'),
+                           console_index=1,
+                           wait_for='QEMU advent calendar')
+
+if __name__ == '__main__':
+    LinuxKernelTest.main()