From b1894e1d1db317c41bfd69e5f421e80329b4362d Mon Sep 17 00:00:00 2001 From: Kai Zimmermann Date: Tue, 8 Mar 2016 12:41:13 +0100 Subject: [PATCH] Removed libraries out of test that where already covered by compile and provided --- 3rd-dependencies/listDeps.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/3rd-dependencies/listDeps.sh b/3rd-dependencies/listDeps.sh index 3f6dddbd5..dfb5b942c 100755 --- a/3rd-dependencies/listDeps.sh +++ b/3rd-dependencies/listDeps.sh @@ -6,3 +6,6 @@ find . -name dependencies.txt|while read i; do cat $i;done|grep '.*:.*:test'|sor find . -name dependencies.txt|while read i; do cat $i;done|grep '.*:.*:provided'|sort|uniq > 3rd-dependencies/provided.txt find . -name dependencies.txt|while read i; do rm $i;done cd 3rd-dependencies/ +cat compile.txt provided.txt|cut -d':' -f1-4|while read i; do grep -h $i test.txt;done|sort|uniq|while read x; do sed -i.bak -e s/$x// test.txt ;done +sed -i.bak '/^[[:space:]]*$/d' test.txt +rm *.bak