X-Git-Url: https://git.exim.org/users/heiko/exim.git/blobdiff_plain/eeeda78a3b06864a1641ce9b7260d4acdb5ee78e..d7177eb2021bc5517b2d8fab2269564f30d4446e:/test/runtest diff --git a/test/runtest b/test/runtest index 8a2b1d32b..d65d0b530 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: (.*)/) @@ -2618,6 +2621,12 @@ if (system("cp $parm_exim_dir/eximstats eximdir") != 0) print "Exim user is $parm_eximuser ($parm_exim_uid)\n"; print "Exim group is $parm_eximgroup ($parm_exim_gid)\n"; + +if ($parm_caller_uid eq $parm_exim_uid) { + tests_exit(-1, "Exim user ($parm_eximuser,$parm_exim_uid) cannot be " + ."the same as caller ($parm_caller,$parm_caller_uid)"); +} + print "The Exim user needs access to the test suite directory. Checking ..."; if (($rc = system("sudo bin/checkaccess $parm_cwd/eximdir/exim $parm_eximuser $parm_eximgroup")) != 0)