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 fu...@apache.org on 2005/01/19 07:03:12 UTC

svn commit: r125590 - /incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/harness/RunList.java

Author: fuzzylogic
Date: Tue Jan 18 22:03:11 2005
New Revision: 125590

URL: http://svn.apache.org/viewcvs?view=rev&rev=125590
Log:
Gracefully skip network server tests if JCC is not available.

Committed for Myrna Van Lunteran <my...@golux.com>

Modified:
   incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/harness/RunList.java

Modified: incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/harness/RunList.java
Url: http://svn.apache.org/viewcvs/incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/harness/RunList.java?view=diff&rev=125590&p1=incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/harness/RunList.java&r1=125589&p2=incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/harness/RunList.java&r2=125590
==============================================================================
--- incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/harness/RunList.java	(original)
+++ incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/harness/RunList.java	Tue Jan 18 22:03:11 2005
@@ -967,6 +967,15 @@
 			driverNotFound = true;
 			result = true;
 		}
+
+		try {
+			Class.forName("com.ibm.db2.jcc.DB2Driver");
+		} catch (ClassNotFoundException cnfe) {
+			driverNotFound = true;
+			result = true;
+		}
+
+
 	    }
 	}