2025-05-19 14:43:00 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
#encoding=utf-8
|
2025-07-29 18:57:45 +08:00
|
|
|
from pyutils import *
|
2025-07-30 15:50:16 +08:00
|
|
|
from testcase import readregs, ebmmu, detect, errorPkt, watchdog, broadcast, sync, base
|
2025-06-26 16:37:12 +08:00
|
|
|
|
2025-05-19 14:43:00 +08:00
|
|
|
if __name__ == '__main__':
|
2025-07-30 15:50:16 +08:00
|
|
|
detect.tc1()
|
|
|
|
|
detect.tc2()
|
|
|
|
|
|
2025-08-01 19:14:52 +08:00
|
|
|
#add_tc_2_runlist(errorPkt.tc1())
|
|
|
|
|
#add_tc_2_runlist(errorPkt.tc2())
|
2025-07-30 15:50:16 +08:00
|
|
|
errorPkt.tc3()
|
2025-08-01 19:14:52 +08:00
|
|
|
add_tc_2_runlist(errorPkt.tc4())
|
2025-07-30 15:50:16 +08:00
|
|
|
|
|
|
|
|
base.tc1()
|
|
|
|
|
base.tc2()
|
|
|
|
|
base.tc3()
|
|
|
|
|
base.tc4()
|
|
|
|
|
base.tc5()
|
|
|
|
|
base.tc6()
|
|
|
|
|
base.tc7()
|
|
|
|
|
base.tc8()
|
2025-08-01 19:14:52 +08:00
|
|
|
#add_tc_2_runlist(base.tc9())
|
2025-07-30 15:50:16 +08:00
|
|
|
|
|
|
|
|
broadcast.tc1()
|
|
|
|
|
broadcast.tc2()
|
|
|
|
|
broadcast.tc3()
|
|
|
|
|
|
|
|
|
|
sync.tc1()
|
|
|
|
|
sync.tc2()
|
|
|
|
|
sync.tc3()
|
|
|
|
|
sync.tc4()
|
2025-05-23 09:16:56 +08:00
|
|
|
|
2025-08-01 11:33:21 +08:00
|
|
|
'''
|
|
|
|
|
add_tc_2_runlist(ebmmu.tc1())
|
|
|
|
|
add_tc_2_runlist(ebmmu.tc2())
|
|
|
|
|
add_tc_2_runlist(ebmmu.tc3())
|
|
|
|
|
add_tc_2_runlist(ebmmu.tc4())
|
|
|
|
|
add_tc_2_runlist(ebmmu.tc5())
|
2025-07-31 15:37:30 +08:00
|
|
|
add_tc_2_runlist(ebmmu.tc6())
|
|
|
|
|
add_tc_2_runlist(ebmmu.tc7())
|
|
|
|
|
add_tc_2_runlist(ebmmu.tc8())
|
|
|
|
|
add_tc_2_runlist(ebmmu.tc9())
|
|
|
|
|
add_tc_2_runlist(ebmmu.tc10())
|
|
|
|
|
add_tc_2_runlist(ebmmu.tc11())
|
|
|
|
|
add_tc_2_runlist(ebmmu.tc12())
|
|
|
|
|
add_tc_2_runlist(ebmmu.tc13())
|
|
|
|
|
add_tc_2_runlist(ebmmu.tc14())
|
2025-08-01 11:33:21 +08:00
|
|
|
add_tc_2_runlist(ebmmu.tc15())
|
|
|
|
|
add_tc_2_runlist(ebmmu.tc16())
|
|
|
|
|
'''
|
2025-07-02 14:01:53 +08:00
|
|
|
|
2025-07-30 15:50:16 +08:00
|
|
|
watchdog.tc1()
|
2025-07-02 14:01:53 +08:00
|
|
|
|
2025-07-30 22:59:06 +08:00
|
|
|
gen_tc_runlist()
|
2025-06-26 19:02:38 +08:00
|
|
|
|