From 4615f13ae4c0437a9d3cce98e07ae7c787811b00 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 7 Dec 2018 14:03:55 +0100 Subject: [PATCH] refresh tests list + save 'checkrel' helper --- checkrel.sh | 14 ++++++++++++++ package.xml | 3 +++ 2 files changed, 17 insertions(+) create mode 100755 checkrel.sh diff --git a/checkrel.sh b/checkrel.sh new file mode 100755 index 00000000..5b8c68c4 --- /dev/null +++ b/checkrel.sh @@ -0,0 +1,14 @@ +#!/bin/sh +echo "+ check all files in package.xml" + +for i in $(ls *.c *.h) +do + [ $i == config.h ] && continue + grep -q $i package.xml || echo missing $i +done +for i in $(find tests -type f) +do + j=$(basename $i) + [ $j == .gitignore ] && continue + grep -q $j package.xml || echo missing $j +done diff --git a/package.xml b/package.xml index 4c72aed7..27378375 100644 --- a/package.xml +++ b/package.xml @@ -82,6 +82,8 @@ + + @@ -107,6 +109,7 @@ +