summaryrefslogtreecommitdiff
path: root/merge-helpers
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-08-31 20:43:11 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-08-31 20:43:11 +0000
commitdbe98a8843b740df4697642e75b3d3eca5ea6dc4 (patch)
treed43980e16f12821c7cb69c0ba0278316b1f9305c /merge-helpers
parentab5e450eb2ade2f97e094476d669a021a84887d8 (diff)
2011-08-31 Joel Sherrill <joel.sherrill@oarcorp.com>
* check_submission: Check for tabs in source files.
Diffstat (limited to 'merge-helpers')
-rw-r--r--merge-helpers/ChangeLog4
-rwxr-xr-xmerge-helpers/check_submission11
2 files changed, 15 insertions, 0 deletions
diff --git a/merge-helpers/ChangeLog b/merge-helpers/ChangeLog
index 64e18c4..9ba8d76 100644
--- a/merge-helpers/ChangeLog
+++ b/merge-helpers/ChangeLog
@@ -1,3 +1,7 @@
+2011-08-31 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * check_submission: Check for tabs in source files.
+
2011-08-01 Joel Sherrill <joel.sherrill@oarcorp.com>
* check_submission: Check for spaces at end of lines.
diff --git a/merge-helpers/check_submission b/merge-helpers/check_submission
index 2624387..5f2e391 100755
--- a/merge-helpers/check_submission
+++ b/merge-helpers/check_submission
@@ -179,6 +179,17 @@ do
test $? -eq 0 && echo "$f has spaces at the end of one or more lines."
done
+# We do not want tabs in source files
+echo "=== Checking for tabs in source files"
+find_source | while read f
+do
+ grep -P '\t' $f >/dev/null
+ if [ $? -eq 0 ]; then
+ echo "*** ${basedir}/${f} has the following lines with tabs"
+ grep -P '\t' $f
+ fi
+done
+
# We do not want GPL code
echo "=== Checking for hints of GPL code"
find_source -m -c -C | while read f