1
1

opal_path_nfs.c test: skip fuse filesystems

Linux statfs(2) lies about the type of fuse filesystems (it reports
fuse.encfs as an NFS filesystem).  So just skip fuse filesystems in
this test until/if we ever care to add some kind of workaround.

Refs trac:4767

cmr=v1.8.2:reviewer=rhc

This commit was SVN r32152.

The following Trac tickets were found above:
  Ticket 4767 --> https://svn.open-mpi.org/trac/ompi/ticket/4767
Этот коммит содержится в:
Jeff Squyres 2014-07-08 13:30:49 +00:00
родитель 309a6cf951
Коммит df82810d03

Просмотреть файл

@ -163,6 +163,12 @@ void get_mounts (int * num_dirs, char ** dirs[], bool * nfs[])
continue;
}
/* Per https://svn.open-mpi.org/trac/ompi/ticket/4767, Linux
lies about fuse filesystems. Skip them. */
if (0 == strncasecmp(fs, "fuse.", 5)) {
continue;
}
/* If we get an fs type of "none", skip it (e.g.,
http://www.open-mpi.org/community/lists/devel/2012/09/11493.php) */
if (0 == strcasecmp(fs, "none")) {