Skip to content

Commit

Permalink
contrib/intel/jenkins: Update ze_v3_shm file name
Browse files Browse the repository at this point in the history
Update ze_v3_shm filename so that the summarizer can pick it up

Signed-off-by: Zach Dworkin <[email protected]>
  • Loading branch information
zachdworkin committed Jan 19, 2024
1 parent 3df6952 commit a0b06ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions contrib/intel/jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def run_fabtests(stage_name, hw, partition, node_num, prov, util=null,

if (way) {
opts = "${opts} --way ${way}"
stage_name = "${stage_name}_${way}"
modes = ["reg"]
}

Expand Down
6 changes: 3 additions & 3 deletions contrib/intel/jenkins/summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -878,11 +878,11 @@ def summarize_items(summary_item, logger, log_dir, mode):

if summary_item == 'v3' or summary_item == 'all':
test_types = ['h2d', 'd2d', 'xd2d']
for type in test_types:
for t in test_types:
ret = FabtestsSummarizer(
logger, log_dir, 'shm',
f'ze_v3_shm_{type}_{mode}',
f"ze v3 shm {type} {mode}"
f'ze_v3_shm_{t}_fabtests_{mode}',
f"ze v3 shm {t} fabtests {mode}"
).summarize()
err += ret if ret else 0

Expand Down

0 comments on commit a0b06ed

Please sign in to comment.