-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refresh tests list + save 'checkrel' helper
- Loading branch information
1 parent
fad8ae7
commit 4615f13
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters