Patch bug49192 for Testing related Bug #61481
Patch version 2012-03-22 21:13 UTC
Return to Bug #61481 |
Download this patch
Patch Revisions:
Developer: mattficken@php.net
--- C:/Users/v-mafick.REDMOND/Downloads/php-5.3-src-r324324/php-5.3-src-r324324/ext/com_dotnet/tests/bug49192.phpt Thu Apr 01 15:54:03 2010
+++ C:/php-sdk/php-5.3-src-r324324/ext/com_dotnet/tests/bug49192.phpt Wed Mar 21 12:37:02 2012
@@ -3,8 +3,22 @@
--SKIPIF--
<?php
if (!extension_loaded("com_dotnet")) print "skip COM/.Net support not present"; ?>
+--XFAIL--
+1
--FILE--
<?php
+
+// this test fails to load ADO
+//
+// a change in windows longhorn x64(affecting vista, 7, 8, 2008, 2008r2) broke ADO.
+//
+// there is a fix available, but user has to install it.
+// given that ADO was deprecated a long time ago in favor of newer APIs,
+// I don't think its worth the trouble of making the user install the fix to
+// get an accurate test run. its better to just not run the test or expect it to fail.
+//
+// see: http://support.microsoft.com/kb/2517589
+// see: http://www.infoq.com/news/2011/10/ADO-Win7
$dbConnection = new Com('ADODB.Connection');
var_dump(gc_collect_cycles());
|