You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by km...@apache.org on 2005/10/08 03:31:42 UTC

svn commit: r307231 - in /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests: master/DerbyNetClient/checkDriver.out tests/jdbcapi/checkDriver.java

Author: kmarsden
Date: Fri Oct  7 18:31:35 2005
New Revision: 307231

URL: http://svn.apache.org/viewcvs?rev=307231&view=rev
Log:
DERBY-374

Disable some tests which are failing on unix until a cross platform solution
can be found
Contributed by Deepa Remesh


Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNetClient/checkDriver.out
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/checkDriver.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNetClient/checkDriver.out
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNetClient/checkDriver.out?rev=307231&r1=307230&r2=307231&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNetClient/checkDriver.out (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/master/DerbyNetClient/checkDriver.out Fri Oct  7 18:31:35 2005
@@ -45,14 +45,6 @@
 doClientURLTest()
 doClientURLTest with url: jdbc:derby://localhost:1527/wombat:create=true
 Null connection returned for url jdbc:derby://localhost:1527/wombat:create=true
-doClientURLTest with url: jdbc:derby://localhost:1527/[DERBY_SYSTEM_HOME]/wombat:create=true
-EXPECTED EXCEPTION:DERBY SQL error: SQLCODE: -1, SQLSTATE: XJ040, SQLERRMC: Failed to start database '[DERBY_SYSTEM_HOME]/wombat:create=true', see the next exception for details.::SQLSTATE: XJ001Java exception: 'The filename, directory name, or volume label syntax is incorrect: java.io.IOException'.
-doClientURLTest with url: jdbc:derby://localhost:1527/"wombat";create=true
-EXPECTED EXCEPTION:DERBY SQL error: SQLCODE: -1, SQLSTATE: XJ041, SQLERRMC: Failed to create database '"wombat"', see the next exception for details.::SQLSTATE: XBM0HDirectory [DERBY_SYSTEM_HOME]/"wombat" cannot be created.
-doClientURLTest with url: jdbc:derby://localhost:1527/"[DERBY_SYSTEM_HOME]/wombat";create=true
-Null connection returned for url jdbc:derby://localhost:1527/"[DERBY_SYSTEM_HOME]/wombat";create=true
-doClientURLTest with url: jdbc:derby://localhost:1527/'[DERBY_SYSTEM_HOME]/wombat';create=true
-Null connection returned for url jdbc:derby://localhost:1527/'[DERBY_SYSTEM_HOME]/wombat';create=true
 doClientURLTest with url: jdbc:derby://localhost:1527/'wombat';create=true
 Connection info for connect(jdbc:derby://localhost:1527/'wombat';create=true, null)
 getURL() = jdbc:derby://localhost:1527/'wombat';create=true

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/checkDriver.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/checkDriver.java?rev=307231&r1=307230&r2=307231&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/checkDriver.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/checkDriver.java Fri Oct  7 18:31:35 2005
@@ -75,10 +75,10 @@
 	private static String[] clientUrls = new String[]
 	{
 		CLIENT_URL_WITH_COLON1,
-		CLIENT_URL_WITH_COLON2,
-		CLIENT_URL_WITH_DOUBLE_QUOTES1,
-		CLIENT_URL_WITH_DOUBLE_QUOTES2,
-		CLIENT_URL_WITH_SINGLE_QUOTES1,
+		//CLIENT_URL_WITH_COLON2,
+		//CLIENT_URL_WITH_DOUBLE_QUOTES1,
+		//CLIENT_URL_WITH_DOUBLE_QUOTES2,
+		//CLIENT_URL_WITH_SINGLE_QUOTES1,
 		CLIENT_URL_WITH_SINGLE_QUOTES2
 	};