[libcxx-commits] [libcxx] a76dc55 - [libc++] Fix SPEC globbing pattern
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Sep 9 12:31:41 PDT 2025
Author: Louis Dionne
Date: 2025-09-09T15:31:35-04:00
New Revision: a76dc5599d4bf55a9bd7347e1a4ca22c77111168
URL: https://github.com/llvm/llvm-project/commit/a76dc5599d4bf55a9bd7347e1a4ca22c77111168
DIFF: https://github.com/llvm/llvm-project/commit/a76dc5599d4bf55a9bd7347e1a4ca22c77111168.diff
LOG: [libc++] Fix SPEC globbing pattern
Added:
Modified:
libcxx/test/benchmarks/spec.gen.py
Removed:
################################################################################
diff --git a/libcxx/test/benchmarks/spec.gen.py b/libcxx/test/benchmarks/spec.gen.py
index eb411823c25bb..b4b31d4e3687c 100644
--- a/libcxx/test/benchmarks/spec.gen.py
+++ b/libcxx/test/benchmarks/spec.gen.py
@@ -74,5 +74,5 @@
# Parse the results into a LNT-compatible format. This also errors out if there are no CSV files, which
# means that the benchmark didn't run properly (the `runcpu` command above never reports a failure).
- print(f'RUN: %{{libcxx-dir}}/utils/parse-spec-results %T/result/CPUv8.001.*.train.csv --output-format=lnt > %T/results.lnt')
+ print(f'RUN: %{{libcxx-dir}}/utils/parse-spec-results %T/result/*.train.csv --output-format=lnt > %T/results.lnt')
print(f'RUN: cat %T/results.lnt')
More information about the libcxx-commits
mailing list