ソースを参照

tools/dev/check_register.sh: process automatically all tests and examples

Nathalie Furmento 13 年 前
コミット
d9a8a89123
共有1 個のファイルを変更した2 個の追加1 個の削除を含む
  1. 2 1
      tools/dev/check_register.sh

+ 2 - 1
tools/dev/check_register.sh

@@ -18,4 +18,5 @@ process_file()
     done
 }
 
-for f in $* ; do process_file $f ; done
+for f in $(find tests -type f -not -path "*svn*") ; do process_file $f ; done
+for f in $(find examples -type f -not -path "*svn*") ; do process_file $f ; done