# HG changeset patch
# User Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
# Date 1631604041 -7200
# Node ID 79393647d7fb1fb081fd1b6c1ba37166c6836e98
# Parent  c71ce17fa7249f1ab288c2f7ba2e06496e673b66
Call Class.forName("...MonetDriver") from main() in OnClientTester

Otherwise my test program doesn't run anymore. It used to, I don't know what changed.

diff --git a/tests/OnClientTester.java b/tests/OnClientTester.java
--- a/tests/OnClientTester.java
+++ b/tests/OnClientTester.java
@@ -20,12 +20,15 @@ public final class OnClientTester extend
 		super(jdbcUrl, verbosity, watchDogEnabled);
 	}
 
-	public static void main(String[] args) throws SQLException, NoSuchMethodException {
+	public static void main(String[] args) throws SQLException, NoSuchMethodException, ClassNotFoundException {
 		String jdbcUrl = null;
 		String requiredPrefix = null;
 		int verbosity = 0;
 		boolean watchDogEnabled = true;
 
+		// Don't know why I need this all of a sudden.. is it only on my system?
+		Class.forName("org.monetdb.jdbc.MonetDriver");
+
 		for (String arg : args) {
 			if (arg.equals("-v"))
 				verbosity++;