mirror of
https://github.com/postgresml/pgcat.git
synced 2026-03-23 01:16:30 +00:00
8 lines
304 B
Bash
Executable File
8 lines
304 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rust-profdata merge -sparse pgcat-*.profraw -o pgcat.profdata
|
|
|
|
rust-cov export -ignore-filename-regex="rustc|registry" -Xdemangler=rustfilt -instr-profile=pgcat.profdata --object ./target/debug/pgcat --format lcov > ./lcov.info
|
|
|
|
genhtml lcov.info --output-directory /tmp/cov --prefix $(pwd)
|