aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/riscv32/test_opensbi.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/riscv32/test_opensbi.py')
-rwxr-xr-xtests/functional/riscv32/test_opensbi.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/functional/riscv32/test_opensbi.py b/tests/functional/riscv32/test_opensbi.py
new file mode 100755
index 0000000..d1ac706
--- /dev/null
+++ b/tests/functional/riscv32/test_opensbi.py
@@ -0,0 +1,10 @@
+#!/usr/bin/env python3
+#
+# SPDX-License-Identifier: GPL-2.0-or-later
+#
+# Reuse the 64-bit OpenSBI test for RISC-V 32-bit machines
+
+from riscv64.test_opensbi import RiscvOpenSBI
+
+if __name__ == '__main__':
+ RiscvOpenSBI.main()