From: Hans-Christoph Steiner Date: Mon, 17 Nov 2014 16:24:02 +0000 (+0100) Subject: run-tests: make sure not to include the bad APKs in tests/ X-Git-Tag: 0.3.0~20^2~1 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=49b343d0245fbf37d1e1cfa9a62c75d4635015fc;p=fdroidserver.git run-tests: make sure not to include the bad APKs in tests/ These APKs are meant for specific tests, not the tests that want just a collection of good APKs. --- diff --git a/tests/run-tests b/tests/run-tests index c12c78a7..ba0d80e6 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -10,7 +10,7 @@ echo_header() { copy_apks_into_repo() { set +x - for f in `find $APKDIR -name '*.apk' | grep -F -v -e unaligned -e unsigned`; do + for f in `find $APKDIR -name '*.apk' | grep -F -v -e unaligned -e unsigned -e badsig -e badcert`; do name=$(basename $(dirname `dirname $f`)) apk=`$aapt dump badging "$f" | sed -n "s,^package: name='\(.*\)' versionCode='\([0-9][0-9]*\)' .*,\1_\2.apk,p"` test $f -nt repo/$apk && rm -f repo/$apk # delete existing if $f is newer