mirror of
				https://github.com/f-droid/fdroidserver.git
				synced 2025-11-04 06:30:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			596 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			596 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
run_test() {
 | 
						|
    red='\033[0;31m'
 | 
						|
    green='\033[0;32m'
 | 
						|
    nocolor='\033[0m'
 | 
						|
    cd $basedir/tests/source-files/$1
 | 
						|
    printf "\n${1}:\n"
 | 
						|
    if ($basedir/gradlew-fdroid 2>/dev/null || true) | grep -Fo "$2"; then
 | 
						|
	printf "${green}passed: $1\n"
 | 
						|
    else
 | 
						|
	printf "${red}ERROR: $2 not found in $1\n"
 | 
						|
	((exit_value++))
 | 
						|
    fi
 | 
						|
    printf $nocolor
 | 
						|
}
 | 
						|
 | 
						|
exit_value=0
 | 
						|
basedir=$(cd $(dirname $0)/..; pwd)
 | 
						|
export https_proxy=127.7.7.7:7 # fake proxy to block downloading
 | 
						|
 | 
						|
run_test osmandapp/osmand 2.2.1
 | 
						|
run_test com.integreight.onesheeld 3.3
 | 
						|
run_test se.manyver/android 5.5
 | 
						|
 | 
						|
exit $exit_value
 |