mirror of
				https://gitlab.gnome.org/GNOME/glib.git
				synced 2025-11-04 01:58:54 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			163 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			163 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
DIR=`dirname $0`;
 | 
						|
(cd $DIR; make performance)
 | 
						|
ID=`git rev-list --max-count=1 HEAD`
 | 
						|
echo "Testing revision ${ID}"
 | 
						|
$DIR/performance | tee "perf-${ID}.log"
 |