diff options
Diffstat (limited to 'tools/check_loading')
-rwxr-xr-x | tools/check_loading | 5 |
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" |