List:Commits« Previous MessageNext Message »
From:rburnett Date:August 22 2007 7:40pm
Subject:Connector/NET commit: r962 - branches/5.0/TestSuite/Source
View as plain text  
Modified:
   branches/5.0/TestSuite/Source/TimeoutAndCancel.cs
Log:
increased the difference between the sleep time and the timeout to possibly account for
test failures on a heavily loaded system

Modified: branches/5.0/TestSuite/Source/TimeoutAndCancel.cs
===================================================================
--- branches/5.0/TestSuite/Source/TimeoutAndCancel.cs	2007-08-22 16:43:17 UTC (rev 961)
+++ branches/5.0/TestSuite/Source/TimeoutAndCancel.cs	2007-08-22 17:40:42 UTC (rev 962)
@@ -175,7 +175,7 @@
 			execSQL("CREATE TABLE test (id INT)");
 
 			MySqlCommand cmd = new MySqlCommand(
-				"call spTest(10);INSERT INTO test VALUES(4)", conn);
+				"call spTest(60);INSERT INTO test VALUES(4)", conn);
 			cmd.CommandTimeout = 5;
 			try
 			{

Thread
Connector/NET commit: r962 - branches/5.0/TestSuite/Sourcerburnett22 Aug