Closed ndokos closed 1 year ago
I saw the breakage and figured I'd backport it (in the modified form that @webbnh mentioned in #3455). It worked, so yeah, maybe we can just keep it. Or I can back it out if necessary , although I hope to leave b0.72 behind very soon after the release is out :smile:
I dropped the React commit (that's the only change). We'll see what Jenkins thinks.
Fixes #3454
pbench-postprocess-tools
mishandles hosts with labels (added by tool registration commands): it ignores the label and complains that it cannot find the tool output directory. The tool output directory path contains<label>:<host>
as one element in the path butpbench-postprocess-tools
looks for a<host>
element.pbench-postprocess-tools
parses the output ofpbench-list-tools
to get the tool info it needs, butpbench-list-tools
omits the label from its output.The first commit fixes
pbench-list-tools
to add the label to its output andpbench-postprocess-tools
to parse that output, derive the label and use it to construct the path of the tool output directory.The second commit deals with tests.
PBENCH-1178