]> granicus.if.org Git - postgresql/commitdiff
patch for building for an alternate port
authorDave Cramer <davec@fastcrypt.com>
Thu, 18 Dec 2003 03:32:05 +0000 (03:32 +0000)
committerDave Cramer <davec@fastcrypt.com>
Thu, 18 Dec 2003 03:32:05 +0000 (03:32 +0000)
src/interfaces/jdbc/build.xml

index 633daa72db354b251e37f1bea33a5c8977530f51..e15d64a539ba39af16c1cc03041972156adcfe15 100644 (file)
@@ -6,7 +6,7 @@
 
   This file now requires Ant 1.4.1.  2002-04-18
 
-  $Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/build.xml,v 1.36 2003/08/24 22:10:09 barry Exp $
+  $Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/build.xml,v 1.36.2.1 2003/12/18 03:32:05 davec Exp $
 
 -->
 
   <!-- This compiles and executes the JUnit tests -->
 
   <!-- defaults for the tests - override these if required -->
-  <property name="database" value="jdbc:postgresql:test" />
+  <property name="server" value="localhost" />
+  <property name="port" value="${def_pgport}" />
+  <property name="database" value="test" />
   <property name="username" value="test" />
   <!-- Password must be something.  Doesn't matter if trust is used! -->
   <property name="password" value="password" />
     <junit>
       <formatter type="brief" usefile="false"/>
 
+      <sysproperty key="server" value="${server}" />
+      <sysproperty key="port" value="${port}" />
       <sysproperty key="database" value="${database}" />
       <sysproperty key="username" value="${username}" />
       <sysproperty key="password" value="${password}" />