summaryrefslogtreecommitdiff
path: root/dist/s_style
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2012-07-30 09:07:44 +0000
committerKeith Bostic <keith@wiredtiger.com>2012-07-30 09:07:44 +0000
commitbf888010989934eea8d82df77f4bace1416a96af (patch)
tree013402ab9510183f718c0d96408ee9df78bf643f /dist/s_style
parent6a23bd37c7c0815941685bae3e1df80a2f958207 (diff)
downloadmongo-bf888010989934eea8d82df77f4bace1416a96af.tar.gz
complain if tabs found in test suite python scripts
Diffstat (limited to 'dist/s_style')
-rw-r--r--dist/s_style5
1 files changed, 5 insertions, 0 deletions
diff --git a/dist/s_style b/dist/s_style
index 4bdca356afc..ee23cade233 100644
--- a/dist/s_style
+++ b/dist/s_style
@@ -91,3 +91,8 @@ for f in `find examples ext src test -name '*.[chisy]' -o -name '*.in' |
cmp $t $f > /dev/null 2>&1 || (echo "modifying $f" && cp $t $f)
done
+
+if egrep ' ' test/suite/*.py > $t; then
+ echo '[tab] characters appear in test suite scripts:'
+ cat $t
+fi