Blame disable-tests-failing-mock.patch

Scott Talbert b91582
diff -up wxWidgets-3.1.4/tests/filename/filenametest.cpp.mock wxWidgets-3.1.4/tests/filename/filenametest.cpp
Scott Talbert b91582
--- wxWidgets-3.1.4/tests/filename/filenametest.cpp.mock	2020-07-22 13:20:06.000000000 -0400
Scott Talbert b91582
+++ wxWidgets-3.1.4/tests/filename/filenametest.cpp	2020-07-22 19:21:26.982426344 -0400
Scott Talbert b91582
@@ -757,7 +757,7 @@ void FileNameTestCase::TestExists()
Scott Talbert 0aea9e
     // These files are only guaranteed to exist under Linux.
Scott Talbert 0aea9e
     // No need for wxFILE_EXISTS_NO_FOLLOW here; wxFILE_EXISTS_SYMLINK implies it
Scott Talbert 0aea9e
     CPPUNIT_ASSERT( wxFileName::Exists("/proc/self", wxFILE_EXISTS_SYMLINK) );
Scott Talbert 0aea9e
-    CPPUNIT_ASSERT( wxFileName::Exists("/dev/log", wxFILE_EXISTS_SOCKET) );
Scott Talbert 0aea9e
+    //CPPUNIT_ASSERT( wxFileName::Exists("/dev/log", wxFILE_EXISTS_SOCKET) );
Scott Talbert 0aea9e
 #endif // __LINUX__
Scott Talbert 0aea9e
 #ifndef __VMS
Scott Talbert 0aea9e
     wxString fifo = dirTemp.GetPath() + "/fifo";
Scott Talbert b91582
@@ -1058,7 +1058,7 @@ TEST_CASE("wxFileName::GetSizeSpecial",
Scott Talbert 0aea9e
 {
Scott Talbert 0aea9e
     wxULongLong size = wxFileName::GetSize("/proc/kcore");
Scott Talbert 0aea9e
     INFO( "size of /proc/kcore=" << size );
Scott Talbert 0aea9e
-    CHECK( size > 0 );
Scott Talbert 0aea9e
+    //CHECK( size > 0 );
Scott Talbert 0aea9e
 
Scott Talbert b91582
     // All files in /sys are one page in size, irrespectively of the size of
Scott Talbert b91582
     // their actual contents.