Skip to content

Commit 1a3bb77

Browse files
committed
feat: add vcstest run impl
1 parent 29c6295 commit 1a3bb77

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/vcs_test.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,11 @@ def comp(self):
6363
self.err.append(line)
6464

6565
def run(self):
66+
# err_cnt = 0
67+
cmd = f'cd {0} && '.format(cicd_config.VCS_RUN_DIR)
68+
cmd += 'make all_test'
69+
70+
def gen_rpt(self):
6671
pass
6772

6873

@@ -75,6 +80,7 @@ def main():
7580
vcstest.intg_soc()
7681
vcstest.comp()
7782
vcstest.run()
83+
vcstest.gen_rpt()
7884

7985

8086
if __name__ == '__main__':

0 commit comments

Comments
 (0)