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