summaryrefslogtreecommitdiffstats
path: root/tools/buildscripts/find-mocables
diff options
context:
space:
mode:
Diffstat (limited to 'tools/buildscripts/find-mocables')
-rwxr-xr-xtools/buildscripts/find-mocables26
1 files changed, 26 insertions, 0 deletions
diff --git a/tools/buildscripts/find-mocables b/tools/buildscripts/find-mocables
new file mode 100755
index 000000000..7c383cfec
--- /dev/null
+++ b/tools/buildscripts/find-mocables
@@ -0,0 +1,26 @@
+#!/usr/bin/env python
+
+import re, sys, os
+
+mocables = set()
+for f in filter(os.path.isfile, sys.argv[1:]):
+ inBlockComment = False
+ for line in open(f).readlines():
+ # Block comments handling
+ if "/*" in line:
+ inBlockComment = True
+ if inBlockComment and "*/" in line:
+ inBlockComment = False
+ if line.find("*/") != len(line) - 3:
+ line = line[line.find("*/")+2:]
+ else:
+ continue
+ if inBlockComment:
+ continue
+ #simple comments handling
+ if "//" in line:
+ line = line.partition("//")[0]
+ if re.match(".*Q_OBJECT", line):
+ mocables.add(f)
+for mocable in mocables:
+ print mocable