[Mono-bugs] [Bug 74649][Min] Changed - NUnit test in corlib fails

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 21 Apr 2005 16:19:38 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by flashdict@gmail.com.

http://bugzilla.ximian.com/show_bug.cgi?id=74649

--- shadow/74649	2005-04-21 14:10:29.000000000 -0400
+++ shadow/74649.tmp.24984	2005-04-21 16:19:38.000000000 -0400
@@ -275,6 +275,22 @@
 may be a more generic way to test if the procfs is one that is valid,
 perhaps by checking for init()'s /proc/1/fd/  directory, which should
 always exist.
 
 I'll try to confirm for NetBSD either way.
 
+
+------- Additional Comments From flashdict@gmail.com  2005-04-21 16:19 -------
+I've confirmed now that neither netbsd nor openbsd have the /fd/
+directory implemented in their procfs.  They are both quite similar to
+freebsd, and there may be other implementations of procfs out there
+which are also non-linuxish, which seems to call for a generic
+solution.  In any case though,
+
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
+return;
+#endif
+
+will work for the bsders, at the beginning of _wapi_handle_check_share().
+
+Thanks again.
+