summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/dist/s_style
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/dist/s_style')
-rwxr-xr-xsrc/third_party/wiredtiger/dist/s_style11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/third_party/wiredtiger/dist/s_style b/src/third_party/wiredtiger/dist/s_style
index 388a481ef56..69cf1f667fa 100755
--- a/src/third_party/wiredtiger/dist/s_style
+++ b/src/third_party/wiredtiger/dist/s_style
@@ -101,10 +101,13 @@ else
cat $t
fi
- # Alignment directive before "struct".
- egrep 'WT_COMPILER_TYPE_ALIGN.*struct' $f > $t
- test -s $t && {
- echo "$f: compiler alignment direction must precede \"struct\""
+ # If we don't have matching pack-begin and pack-end calls, we don't get
+ # an error, we just get a Windows performance regression. Using awk and
+ # not wc to ensure there's no whitespace in the assignment.
+ egrep WT_PACKED_STRUCT $f > $t
+ cnt=`awk 'BEGIN { line = 0 } { ++line } END { print line }' < $t`
+ test `expr "$cnt" % 2` -ne 0 && {
+ echo "$f: mismatched WT_PACKED_STRUCT_BEGIN/END lines"
cat $t
}