 745950ce0e
			
		
	
	745950ce0e
	
	
	
		
			
			The 'log -3000 (baseline)' test accidentally still used -1000 from an earlier version. Noticed-by: Lawrence Holding <Lawrence.Holding@cubic.com> Signed-off-by: Thomas Rast <trast@student.ethz.ch> Signed-off-by: Junio C Hamano <gitster@pobox.com>
		
			
				
	
	
		
			30 lines
		
	
	
		
			488 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			488 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| test_description="Tests diff generation performance"
 | |
| 
 | |
| . ./perf-lib.sh
 | |
| 
 | |
| test_perf_default_repo
 | |
| 
 | |
| test_perf 'log -3000 (baseline)' '
 | |
| 	git log -3000 >/dev/null
 | |
| '
 | |
| 
 | |
| test_perf 'log --raw -3000 (tree-only)' '
 | |
| 	git log --raw -3000 >/dev/null
 | |
| '
 | |
| 
 | |
| test_perf 'log -p -3000 (Myers)' '
 | |
| 	git log -p -3000 >/dev/null
 | |
| '
 | |
| 
 | |
| test_perf 'log -p -3000 --histogram' '
 | |
| 	git log -p -3000 --histogram >/dev/null
 | |
| '
 | |
| 
 | |
| test_perf 'log -p -3000 --patience' '
 | |
| 	git log -p -3000 --patience >/dev/null
 | |
| '
 | |
| 
 | |
| test_done
 |