From eff223ffd74eed268f35d693462969f7f75632d2 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 8 May 2011 19:44:12 -0400 Subject: 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. --- src/test/isolation/isolationtester.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/test/isolation/isolationtester.c') 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 #endif -#include -#include -#include -#include #include "libpq-fe.h" #include "isolationtester.h" -- cgit v1.2.3