summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-11-10 22:55:03 +0300
committerAndrei Karas <akaras@inbox.ru>2014-11-10 22:55:03 +0300
commitbe19d06b83e10c23b562c7bebe455e026a5fd738 (patch)
tree20c43017c83f08d0921bdf8973e67cae55076fd5 /tools
parent49bb25a16d652dee43be5454b984134918200fe1 (diff)
downloadhercules-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')
-rwxr-xr-xtools/validateinterfaces.py10
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)