mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
7 lines
117 B
Bash
7 lines
117 B
Bash
#!/bin/bash
|
|
shopt -s globstar
|
|
gcov_data_dir="."
|
|
for x in ./**/*.o; do
|
|
echo "x: $x"
|
|
gcov "$gcov_data_dir/$x"
|
|
done
|