summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2011-11-16 15:15:44 +0100
committerXavier Claessens <xclaesse@gmail.com>2011-11-16 15:18:21 +0100
commitb3f50e345e8dabb2c620420e5889a2167935ffd7 (patch)
tree0e0bdbe558fa43c6406c5dfe4d3d2af4e7a93c95 /tools
parent67bffca0678d1286d07b1531f6562126e92cc31e (diff)
downloadtelepathy-glib-b3f50e345e8dabb2c620420e5889a2167935ffd7.tar.gz
Add coding style check for g_hash_table_destroy and g_array_free usage
Diffstat (limited to 'tools')
-rw-r--r--tools/check-c-style.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/check-c-style.sh b/tools/check-c-style.sh
index dd62fb7ba..4330b1479 100644
--- a/tools/check-c-style.sh
+++ b/tools/check-c-style.sh
@@ -44,6 +44,19 @@ if grep -En '^ *(static |const |)* *[[:alnum:]_]+\*+([[:alnum:]_]|;|$)' \
fail=1
fi
+if grep -n 'g_hash_table_destroy' "$@"; then
+ echo "^^^ Our coding style is to use g_hash_table_unref"
+ fail=1
+fi
+
+for p in "" "ptr_" "byte_"; do
+ if grep -En "g_${p}array_free \(([^ ,]+), TRUE\)" "$@"; then
+ echo "^^^ Our coding style is to use g_${p}array_unref in the case "
+ echo " the underlying C array is not used"
+ fail=1
+ fi
+done
+
if test -n "$CHECK_FOR_LONG_LINES"
then
if egrep -n '.{80,}' "$@"