From e0c0bf143729b3e0f77b7d2dd5e82769939db1b8 Mon Sep 17 00:00:00 2001 From: bacon Date: Fri, 5 Sep 2025 15:53:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B5=8B=E8=AF=95=E5=AF=84?= =?UTF-8?q?=E5=AD=98=E5=99=A8=E7=9A=84=E7=94=A8=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tb/shinTest/gen_pkt.py | 2 +- tb/shinTest/testcase/__init__.py | 2 +- tb/shinTest/testcase/{readregs.py => rwregs.py} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename tb/shinTest/testcase/{readregs.py => rwregs.py} (100%) diff --git a/tb/shinTest/gen_pkt.py b/tb/shinTest/gen_pkt.py index 56a7da7..44f1249 100755 --- a/tb/shinTest/gen_pkt.py +++ b/tb/shinTest/gen_pkt.py @@ -1,7 +1,7 @@ #!/usr/bin/env python #encoding=utf-8 from pyutils import * -from testcase import environment, readregs, ebmmu, errorPkt, watchdog, broadcast, sync, base, mac +from testcase import environment, rwregs, ebmmu, errorPkt, watchdog, broadcast, sync, base, mac if __name__ == '__main__': environment.gen_slv_dev_num(4) diff --git a/tb/shinTest/testcase/__init__.py b/tb/shinTest/testcase/__init__.py index 0f518cb..2b1d041 100644 --- a/tb/shinTest/testcase/__init__.py +++ b/tb/shinTest/testcase/__init__.py @@ -1,5 +1,5 @@ # testcase/__init__.py -from .readregs import * +from .rwregs import * from .ebmmu import * from .errorPkt import * from .watchdog import * diff --git a/tb/shinTest/testcase/readregs.py b/tb/shinTest/testcase/rwregs.py similarity index 100% rename from tb/shinTest/testcase/readregs.py rename to tb/shinTest/testcase/rwregs.py