summaryrefslogtreecommitdiffstats
path: root/tools/check_loading
diff options
context:
space:
mode:
Diffstat (limited to 'tools/check_loading')
-rwxr-xr-xtools/check_loading5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/check_loading b/tools/check_loading
index d53be77..88ad366 100755
--- a/tools/check_loading
+++ b/tools/check_loading
@@ -9,13 +9,14 @@ parentdir=${abspath%/*/*}
#
function run () {
echo -n " ${1##*/}"
- $RUBY -I $parentdir/lib $1 2>/dev/null && echo -e "$GREEN OK$RESET" || echo -e "$RED KO$RESET"
+ outf=/tmp/ffi-efl-${1##*/}
+ $RUBY -I $parentdir/lib $1 2>>$outf && rm $outf && echo -e "$GREEN OK$RESET" || echo -e "$RED KO$RESET"
}
#
function each () {
echo $($RUBY --version)
echo " lib/efl/native/*.rb"
- for native in $parentdir/lib/efl/native/*.rb; do
+ for native in $(find $parentdir/lib/efl/native/ -name *.rb); do
run $native
done
echo " lib/efl/*.rb"