From e1b3d58d3359cdbb67d37cd4222ff9dcb7b7da0e Mon Sep 17 00:00:00 2001 From: John Jetmore Date: Mon, 14 Jun 2010 20:30:12 +0000 Subject: [PATCH] print sizeof(off_t) in initial -bV output. Refuse to tun tests is sizeof(off_t) > 32. --- test/runtest | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/runtest b/test/runtest index 8a2b1d32b..43b35904e 100755 --- a/test/runtest +++ b/test/runtest @@ -1,6 +1,6 @@ #! /usr/bin/perl -w -# $Cambridge: exim/test/runtest,v 1.36 2010/06/05 02:25:16 jetmore Exp $ +# $Cambridge: exim/test/runtest,v 1.37 2010/06/14 20:30:12 jetmore Exp $ ############################################################################### # This is the controlling script for the "new" test suite for Exim. It should # @@ -2038,7 +2038,10 @@ while () elsif (/^Size of off_t: (\d+)/) { + print; $have_largefiles = 1 if $1 > 4; + die "** Size of off_t > 32 which seems improbable, not running tests\n" + if ($1 > 32); } elsif (/^Support for: (.*)/) -- 2.30.2