소스 검색

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