jetmore 2010/06/14 21:30:12 BST
Modified files:
exim-test runtest
Log:
print sizeof(off_t) in initial -bV output. Refuse to tun tests is sizeof(off_t) > 32.
Revision Changes Path
1.37 +3 -0 exim/exim-test/runtest
Index: runtest
===================================================================
RCS file: /home/cvs/exim/exim-test/runtest,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- runtest 5 Jun 2010 02:25:16 -0000 1.36
+++ runtest 14 Jun 2010 20:30:12 -0000 1.37
@@ -1,6 +1,6 @@
#! /usr/bin/perl -w
-# $Cambridge: exim/exim-test/runtest,v 1.36 2010/06/05 02:25:16 jetmore Exp $
+# $Cambridge: exim/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 @@
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: (.*)/)