From 0b319f2a4b703571830c507f0c97f9307a569550 Mon Sep 17 00:00:00 2001 From: panzhe0328 Date: Wed, 19 Nov 2025 19:09:36 +0800 Subject: [PATCH] Fixed benchtest result file overwriting --- 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 e80a59c..1295e72 100644 --- a/glibc.spec +++ b/glibc.spec @@ -67,7 +67,7 @@ ############################################################################## Name: glibc Version: 2.38 -Release: 78 +Release: 79 Summary: The GNU libc libraries License: %{all_license} URL: http://www.gnu.org/software/glibc/ @@ -1602,6 +1602,9 @@ fi %endif %changelog +* Wed Nov 19 2025 panzhe - 2.38-79 +- benchtest: Fixed benchtest result file overwriting + * Thu Nov 13 2025 Jiamei Xie - 2.38-78 - Backport patch from master branch - Set Prefer_No_AVX512 flag for hygon platform -- Gitee