Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOSamiQemu
QOSamiQemu
/
tests
/
functional
/
riscv32
/
test_opensbi.py
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
py
10 lines
229 Bytes
Copy permalink
Copy
Raw
1
#!/usr/bin/env python3
2
#
3
# SPDX-License-Identifier: GPL-2.0-or-later
4
#
5
# Reuse the 64-bit OpenSBI test for RISC-V 32-bit machines
6
7
from
riscv64.test_opensbi
import
RiscvOpenSBI
8
9
if
__name__
==
'
__main__
'
:
10
RiscvOpenSBI
.
main
()