diff options
author | Tom Lane | 2011-05-08 23:44:12 +0000 |
---|---|---|
committer | Tom Lane | 2011-05-08 23:45:00 +0000 |
commit | eff223ffd74eed268f35d693462969f7f75632d2 (patch) | |
tree | 0f9733a18830c015465f916f25975955add056f3 /src/test/isolation/isolationtester.c | |
parent | e6a740284291d1ebaca42b2954eb20e09daac9b9 (diff) |
Fix some portability issues in isolation regression test driver.
Remove random system #includes in favor of using postgres_fe.h. (The
alternative to that is letting this module grow its own configuration
testing ability...)
Also fix the "make clean" target to actually clean things up.
Per local testing.
Diffstat (limited to 'src/test/isolation/isolationtester.c')
-rw-r--r-- | src/test/isolation/isolationtester.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/test/isolation/isolationtester.c b/src/test/isolation/isolationtester.c index 44a4858c96c..0f77917fb53 100644 --- a/src/test/isolation/isolationtester.c +++ b/src/test/isolation/isolationtester.c @@ -5,14 +5,12 @@ * Runs an isolation test specified by a spec file. */ +#include "postgres_fe.h" + #ifdef WIN32 #include <windows.h> #endif -#include <stddef.h> -#include <stdio.h> -#include <stdlib.h> -#include <string.h> #include "libpq-fe.h" #include "isolationtester.h" |