The SHA256AutoDetect
return output is used, among other use cases, to name benchmarks. Using a comma breaks the bench_bitcoin
CSV output.
This PR replaces the comma with a semicolon, which fixes #33331.
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.
For details see: https://corecheck.dev/bitcoin/bitcoin/pulls/33340.
See the guideline for information on the review process.
If your review is incorrectly listed, please react with 👎 to this comment and the bot will ignore it on the next update.
624@@ -625,7 +625,7 @@ std::string SHA256AutoDetect(sha256_implementation::UseImplementation use_implem
625 Transform = sha256_x86_shani::Transform;
626 TransformD64 = TransformD64Wrapper<sha256_x86_shani::Transform>;
627 TransformD64_2way = sha256d64_x86_shani::Transform_2way;
628- ret = "x86_shani(1way,2way)";
629+ ret = "x86_shani(1way;2way)";
We should likely update the arm version as well:
The `SHA256AutoDetect` return output is used, among other use cases, to
name benchmarks. Using a comma breaks the CSV output.
This change replaces the comma with a semicolon, which fixes the issue.
code review ACK 790b440197bde322432a5bab161f1869b667e681
PR changes the comma’s from the static text in the SHA256AutoDetect
return output to semicolons so that it will not interfere with Comma-Separated Values (CSV) output.