mirror of
				https://github.com/ossrs/srs.git
				synced 2025-03-09 15:49:59 +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
 |