diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2017-10-26 18:43:55 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2017-10-26 18:43:55 +0100 |
commit | cc6ea8f7c7642ec76dd1615e23cf57fd3d2a1aa9 (patch) | |
tree | 4153e839507a0fe61163334c0661db0fe32c019c | |
parent | 0621a8991f2aa270d335fafe83e9dca263672d0c (diff) |
Testsuite: support platform variance in debug output
Solaris printf %p gives hex without a leading 0x
-rwxr-xr-x | test/runtest | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/runtest b/test/runtest index 8f8767af4..94ecd6944 100755 --- a/test/runtest +++ b/test/runtest @@ -1116,8 +1116,8 @@ RESET_AFTER_EXTRA_LINE_READ: next if /^(ppppp )?setsockopt FASTOPEN: Protocol not available$/; # Specific pointer values reported for DB operations change from run to run - s/^(returned from EXIM_DBOPEN: 0x)[0-9a-f]+/$1AAAAAAAA/; - s/^(EXIM_DBCLOSE.0x)[0-9a-f]+/$1AAAAAAAA/; + s/^(returned from EXIM_DBOPEN: )(0x)?[0-9a-f]+/${1}0xAAAAAAAA/; + s/^(EXIM_DBCLOSE.)(0x)?[0-9a-f]+/${1}0xAAAAAAAA/; # When Exim is checking the size of directories for maildir, it uses # the check_dir_size() function to scan directories. Of course, the order |