platform/ws-tests/profile-generate.sh
Andrey Sobolev ca73f4e8f1
UBERF-9457: Region move fixes + tests (#7986)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2025-02-12 09:15:34 +07:00

9 lines
205 B
Bash
Executable File

#!/bin/bash
# npm install -g cpupro
for profile in $(ls ./profiles/*.cpuprofile); do
name=${profile/\.cpuprofile/}
if ! test -f $name.html; then
cpupro $profile -f "$name.html" --no-open
fi
done