Skip to content

Commit

Permalink
runtest.py: enhancement
Browse files Browse the repository at this point in the history
1. Specify the value of the identifier field, and the executed command will now be used as the name of test.

Signed-off-by: Haoliang Zhu <[email protected]>
  • Loading branch information
haoliang-Zhu committed Sep 4, 2024
1 parent 71d9cc5 commit 1bb365f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BM/runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def create_runnables_from_file(ftests):

# Split command line parameters.
cmd_line = shlex.split(line_str)
runnable = Runnable("exec-test", *cmd_line)
runnable = Runnable("exec-test", *cmd_line, identifier = line_str)
tests.append(runnable)
return tests

Expand Down

0 comments on commit 1bb365f

Please sign in to comment.