From 49b343d0245fbf37d1e1cfa9a62c75d4635015fc Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 17 Nov 2014 17:24:02 +0100 Subject: [PATCH] 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. --- tests/run-tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2