diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2018-01-14 15:02:28 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2018-01-14 18:01:53 +0000 |
commit | ff0592132f7e1f9b871a1afb4aa23da96dc189f8 (patch) | |
tree | 8047b61d637b4d5814e6b09fdbbedd6997e1fb46 /test/runtest | |
parent | 3f78365471d68728e6607ad49aaa6299f69c6f86 (diff) |
Testsuite: MySQL portability
Diffstat (limited to 'test/runtest')
-rwxr-xr-x | test/runtest | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/runtest b/test/runtest index 5671fead2..1b6e0d628 100755 --- a/test/runtest +++ b/test/runtest @@ -1126,6 +1126,11 @@ RESET_AFTER_EXTRA_LINE_READ: s/^(returned from EXIM_DBOPEN: )(0x)?[0-9a-f]+/${1}0xAAAAAAAA/; s/^(EXIM_DBCLOSE.)(0x)?[0-9a-f]+/${1}0xAAAAAAAA/; + # Platform-dependent output during MySQL startup + next if /PerconaFT file system space/; + next if /^Waiting for MySQL server to answer/; + next if /mysqladmin: CREATE DATABASE failed; .* database exists/; + # When Exim is checking the size of directories for maildir, it uses # the check_dir_size() function to scan directories. Of course, the order # of the files that are obtained using readdir() varies from system to |