Reported by Thomas C Oppe <Thomas.C.Oppe@erdc.dren.mil>
at <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=37312>.
* tests/test-symlink.h (test_symlink): Accept errno value ENOENT.
+2019-09-06 Bruno Haible <bruno@clisp.org>
+
+ symlink tests: Avoid test failure on Linux with Lustre file system.
+ Reported by Thomas C Oppe <Thomas.C.Oppe@erdc.dren.mil>
+ at <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=37312>.
+ * tests/test-symlink.h (test_symlink): Accept errno value ENOENT.
+
2019-09-01 Bruno Haible <bruno@clisp.org>
gitsub.sh: Add support for shallow-cloning of subdirectories.
ASSERT (errno == EEXIST);
errno = 0;
ASSERT (func ("nowhere", BASE "dir/") == -1);
- ASSERT (errno == EEXIST || errno == EINVAL);
+ ASSERT (errno == EEXIST || errno == EINVAL
+ || errno == ENOENT /* Lustre FS on Linux */);
ASSERT (close (creat (BASE "file", 0600)) == 0);
errno = 0;
ASSERT (func ("nowhere", BASE "file") == -1);