1
0
Fork 0
mirror of https://github.com/anrieff/libcpuid synced 2025-10-03 11:01:30 +00:00

Tests: remove frequency from test names

This commit is contained in:
The Tumultuous Unicorn Of Darkness 2025-05-02 18:24:39 +02:00
commit 25f3c6f29c
No known key found for this signature in database
GPG key ID: 1E55EE2EFF18BC1A
139 changed files with 1 additions and 1 deletions

View file

@ -16,7 +16,7 @@ echo -e "\033[1mCreating '$REPORT_FILE' report file...\033[0m"
"$CPUID_TOOL" --load="$RAW_FILE" --outfile="$REPORT_FILE" --report
if [[ -d "$OUTPUT_DIR" ]]; then
test_file="$("$CPUID_TOOL" --load="$RAW_FILE" --brandstr | head -n1 | xargs | sed 's/([^)]*)//g' | sed -r 's/\s+/-/g' | tr '[:upper:]' '[:lower:]')"
test_file="$("$CPUID_TOOL" --load="$RAW_FILE" --brandstr | head -n1 | sed -e 's/([^)]*)//g' -e 's/,//g' | cut -d'@' -f1 | xargs | sed -r 's/\s+/-/g' | tr '[:upper:]' '[:lower:]')"
output_file="${OUTPUT_DIR}/${test_file}.test"
echo -e "\033[1mCreating '$output_file' test file...\033[0m"
else