NEWS.stable: update
[gnulib.git] / tests / test-rmdir.h
index bb7b344..a859739 100644 (file)
@@ -68,7 +68,7 @@ test_rmdir_func (int (*func) (char const *name), bool print)
   /* Empty directory.  */
   ASSERT (unlink (BASE "dir/file") == 0);
   errno = 0;
-  ASSERT (func (BASE "dir/./") == -1);
+  ASSERT (func (BASE "dir/.//") == -1);
   ASSERT (errno == EINVAL || errno == EBUSY);
   ASSERT (func (BASE "dir") == 0);
 
@@ -80,7 +80,7 @@ test_rmdir_func (int (*func) (char const *name), bool print)
   if (symlink (BASE "dir", BASE "link") != 0)
     {
       if (print)
-       fputs ("skipping test: symlinks not supported on this filesystem\n",
+       fputs ("skipping test: symlinks not supported on this file system\n",
               stderr);
       return 77;
     }