23 lines
		
	
	
		
			811 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			811 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| module Homebrew
 | |
|   def tests
 | |
|     (HOMEBREW_LIBRARY/"Homebrew/test").cd do
 | |
|       ENV["TESTOPTS"] = "-v" if ARGV.verbose?
 | |
|       ENV["HOMEBREW_TESTS_COVERAGE"] = "1" if ARGV.include? "--coverage"
 | |
|       ENV["HOMEBREW_NO_COMPAT"] = "1" if ARGV.include? "--no-compat"
 | |
|       Homebrew.install_gem_setup_path! "bundler"
 | |
|       quiet_system("bundle", "check") || \
 | |
|         system("bundle", "install", "--path", "vendor/bundle")
 | |
|       system "bundle", "exec", "rake", "test"
 | |
|       Homebrew.failed = !$?.success?
 | |
|       if (fs_leak_log = HOMEBREW_LIBRARY/"Homebrew/test/fs_leak_log").file?
 | |
|         fs_leak_log_content = fs_leak_log.read
 | |
|         unless fs_leak_log_content.empty?
 | |
|           opoo "File leak is detected"
 | |
|           puts fs_leak_log_content
 | |
|           Homebrew.failed = true
 | |
|         end
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 | 
