From 6394200751b6ed52b60e1347e25515b6aeb2c26a Mon Sep 17 00:00:00 2001 From: panzhe0328 Date: Thu, 20 Nov 2025 15:24:33 +0800 Subject: [PATCH] Fixed benchtest result file overwriting (cherry picked from commit a48d3d35479e77c93885de259ae7ec7dddf50463) --- bench.mk | 2 +- glibc.spec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/bench.mk b/bench.mk index dfe46bd..28c8741 100644 --- a/bench.mk +++ b/bench.mk @@ -45,9 +45,9 @@ bench-set: $(binaries-benchset) bench-malloc: $(binaries-bench-malloc) run=$(objpfx)bench-malloc-thread; \ - outfile=$(prefix)/$$(basename $${run}.$(ver).out); \ for thr in 1 8 16 32; do \ echo "Running $${run} $${thr}"; \ + outfile=$(prefix)/$$(basename $${run}-$${thr}.$(ver).out); \ $(run-bench) $${thr} > $${outfile}.tmp; \ mv $${outfile}{.tmp,}; \ done diff --git a/glibc.spec b/glibc.spec index 8224249..39ef99b 100644 --- a/glibc.spec +++ b/glibc.spec @@ -67,7 +67,7 @@ ############################################################################## Name: glibc Version: 2.38 -Release: 79 +Release: 80 Summary: The GNU libc libraries License: %{all_license} URL: http://www.gnu.org/software/glibc/ @@ -1603,6 +1603,9 @@ fi %endif %changelog +* Thu Nov 20 2025 panzhe - 2.38-80 +- benchtest: Fixed benchtest result file overwriting + * Wed Nov 19 2025 Qingqing Li - 2.38-79 - AArch64: Optimise SVE scalar callbacks -- Gitee