diff options
author | Ryan Bloom <rbb@apache.org> | 1999-12-17 12:32:16 +0000 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 1999-12-17 12:32:16 +0000 |
commit | ffa1a93181577b4d226e345e5457967a4b9bab46 (patch) | |
tree | 96c23027d4c16e57c546099774131e0fb47da747 /test/testproc.c | |
parent | 354ff5380b1ffeef92d84e47a20805b4083004c2 (diff) | |
download | apr-ffa1a93181577b4d226e345e5457967a4b9bab46.tar.gz |
Various fixes for Win32 APR. The test cases all almost work again on
windows. The 1 second sleep that has been added to testproc is so that
Windows has time to notice the update to the file system.
Submitted by: Allan Edwards
Reviewed by: Ryan Bloom
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59530 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testproc.c')
-rw-r--r-- | test/testproc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/testproc.c b/test/testproc.c index 0cd50c106..af0ef9166 100644 --- a/test/testproc.c +++ b/test/testproc.c @@ -168,6 +168,7 @@ int main(int argc, char *argv[]) } else fprintf(stderr, "Read failed.\n"); + Sleep(1000); fprintf(stdout, "Removing directory......."); if (ap_remove_dir("proctest", context) != APR_SUCCESS) { fprintf(stderr, "Could not remove directory.\n"); |