Skip to content

Commit

Permalink
更新测试脚本
Browse files Browse the repository at this point in the history
  • Loading branch information
joyqi committed Oct 11, 2014
1 parent a1fad00 commit ccd8738
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ pot:


test:
for i in `find ../var/ -name '*.php'`; do php -l $$i; done;
for i in `find ../usr/ -name '*.php'`; do php -l $$i; done;
for i in `find ../admin/ -name '*.php'`; do php -l $$i; done;
for i in `find ../var/ -name '*.php'`; do php -l $$i || exit 1; done;
for i in `find ../usr/ -name '*.php'`; do php -l $$i || exit 1; done;
for i in `find ../admin/ -name '*.php'`; do php -l $$i || exit 1; done;


all:
Expand Down

0 comments on commit ccd8738

Please sign in to comment.