19 lines
		
	
	
		
			417 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			417 B
		
	
	
	
		
			Go
		
	
	
	
	
	
//golangcitest:args -Eerrcheck
 | 
						|
//golangcitest:config_path testdata/errcheck/exclude_functions.yml
 | 
						|
package testdata
 | 
						|
 | 
						|
import (
 | 
						|
	"io/ioutil"
 | 
						|
)
 | 
						|
 | 
						|
func TestErrcheckExcludeFunctions() []byte {
 | 
						|
	ret, _ := ioutil.ReadFile("f.txt")
 | 
						|
	ioutil.ReadDir("dir")
 | 
						|
	return ret
 | 
						|
}
 | 
						|
 | 
						|
func TestErrcheckNoExcludeFunctions() []byte {
 | 
						|
	ret, _ := ioutil.ReadAll(nil) // ERROR "Error return value of `ioutil.ReadAll` is not checked"
 | 
						|
	return ret
 | 
						|
}
 |