diff options
author | Philip Hazel <ph10@hermes.cam.ac.uk> | 2007-07-04 10:37:03 +0000 |
---|---|---|
committer | Philip Hazel <ph10@hermes.cam.ac.uk> | 2007-07-04 10:37:03 +0000 |
commit | a4dc33a8a400a90d4d73aeb79fd9809a14e5795c (patch) | |
tree | ffa7647def445a429d567651c3d0f58e4a3fbe20 /test/runtest | |
parent | 1f5497b2a08c38975c9945122a0279bb03f99e28 (diff) |
Remove unwanted (int) case when reading SIZE. Fix runtest for 64-bit
systems. Tidy obsolete stuff in test 46.
Diffstat (limited to 'test/runtest')
-rwxr-xr-x | test/runtest | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/runtest b/test/runtest index aba266292..6a4fb2b51 100755 --- a/test/runtest +++ b/test/runtest @@ -1,6 +1,6 @@ #! /usr/bin/perl -w -# $Cambridge: exim/test/runtest,v 1.27 2007/06/14 13:20:38 ph10 Exp $ +# $Cambridge: exim/test/runtest,v 1.28 2007/07/04 10:37:04 ph10 Exp $ ############################################################################### # This is the controlling script for the "new" test suite for Exim. It should # @@ -490,6 +490,12 @@ while(<IN>) # ======== General uids, gids, and pids ======== # Note: this must come after munges for caller's and exim's uid/gid + # These are for systems where long int is 64 + s/\buid=4294967295/uid=-1/; + s/\beuid=4294967295/euid=-1/; + s/\bgid=4294967295/gid=-1/; + s/\begid=4294967295/egid=-1/; + s/\bgid=\d+/gid=gggg/; s/\begid=\d+/egid=gggg/; s/\bpid=\d+/pid=pppp/; |