mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-10-30 10:45:40 +03:00 
			
		
		
		
	Implemented the benchmark script in python since it is much cleaner and simpler to maintain.
		
			
				
	
	
		
			6 lines
		
	
	
		
			190 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			190 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| # Simple wrapper around the pylint program that uses the pylintrc file to
 | |
| # validate the source code in files passed on command line.
 | |
| 
 | |
| exec pylint --rcfile "${0%/*}/pylintrc" "$@"
 |