X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-rmdir.h;h=a85973955495b68110b605ccd2c2ad7af439f5a7;hb=1697fcca5dcb036ef6647969cbbaad907d16479c;hp=bb7b3447291dbd7778da91a5280b22fef6991aa2;hpb=ff4e8f6b53d7b8c53856ba8ba2adaad3251e6a88;p=gnulib.git diff --git a/tests/test-rmdir.h b/tests/test-rmdir.h index bb7b34472..a85973955 100644 --- a/tests/test-rmdir.h +++ b/tests/test-rmdir.h @@ -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; }