diff options
author | Philip Hazel <ph10@hermes.cam.ac.uk> | 2005-08-08 13:21:46 +0000 |
---|---|---|
committer | Philip Hazel <ph10@hermes.cam.ac.uk> | 2005-08-08 13:21:46 +0000 |
commit | 71d073ca5356e40759c4829e0b094275302f6c53 (patch) | |
tree | 3c1231a5b05dfcd836b024b371977ed73aae9b01 | |
parent | 31480e424d1ac61f5d3a86d7913e5bd78c7d4d9b (diff) |
Small delay in test harness to ensure debugging output comes out in the
same order.
-rw-r--r-- | src/src/rda.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/src/rda.c b/src/src/rda.c index 7819a8023..1c45f7bb3 100644 --- a/src/src/rda.c +++ b/src/src/rda.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/rda.c,v 1.9 2005/08/02 13:43:04 ph10 Exp $ */ +/* $Cambridge: exim/src/src/rda.c,v 1.10 2005/08/08 13:21:46 ph10 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -770,6 +770,11 @@ if (read(fd, filtertype, sizeof(int)) != sizeof(int) || read(fd, &yield, sizeof(int)) != sizeof(int) || !rda_read_string(fd, error)) goto DISASTER; +/* In the test harness, give the subprocess time to finish off and write +any debugging output. */ + +if (running_in_test_harness) millisleep(250); + DEBUG(D_route) debug_printf("rda_interpret: subprocess yield=%d error=%s\n", yield, *error); |