mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-11-04 00:04:25 -05:00 
			
		
		
		
	And avoid insensitive/trigger words (as far as possible -- some are coming from Qt or other external APIs)
		
			
				
	
	
		
			7 lines
		
	
	
		
			222 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			222 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
DIR=$(git rev-parse --show-toplevel)
 | 
						|
cd $1 || exit
 | 
						|
FOLDER=linux
 | 
						|
ctest -E "$(cat ${DIR}/.ci/travis/${FOLDER}/blocklist.txt | sed -r '/^(#.*?)?$/d' | paste -sd '|' -)" --output-on-failure
 | 
						|
cd $DIR || exit
 |