diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-10 22:55:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-10 22:55:03 +0300 |
commit | be19d06b83e10c23b562c7bebe455e026a5fd738 (patch) | |
tree | 20c43017c83f08d0921bdf8973e67cae55076fd5 /tools/validateinterfaces.py | |
parent | 49bb25a16d652dee43be5454b984134918200fe1 (diff) | |
download | hercules-be19d06b83e10c23b562c7bebe455e026a5fd738.tar.gz hercules-be19d06b83e10c23b562c7bebe455e026a5fd738.tar.bz2 hercules-be19d06b83e10c23b562c7bebe455e026a5fd738.tar.xz hercules-be19d06b83e10c23b562c7bebe455e026a5fd738.zip |
Check only dirs with servers sources and common dir.
Diffstat (limited to 'tools/validateinterfaces.py')
-rwxr-xr-x | tools/validateinterfaces.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/tools/validateinterfaces.py b/tools/validateinterfaces.py index 987c68ed0..985ab4d59 100755 --- a/tools/validateinterfaces.py +++ b/tools/validateinterfaces.py @@ -156,7 +156,13 @@ tracker = Tracker() tracker.arr = dict() tracker.methods = Set() print "Checking initerfaces initialisation" -processIfDir(tracker, "../src"); +processIfDir(tracker, "../src/char"); +processIfDir(tracker, "../src/map"); +processIfDir(tracker, "../src/login"); +processIfDir(tracker, "../src/common"); print "Checking interfaces usage" -processDir(tracker, "../src"); +processDir(tracker, "../src/char"); +processDir(tracker, "../src/map"); +processDir(tracker, "../src/login"); +processDir(tracker, "../src/common"); reportMethods(tracker) |