X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-mkdir.h;h=62e8ec4238700d928c64e8fcf8136b10a046e224;hb=d6e564567eb4ab3033d8e08c8467e3d1a3f51c0d;hp=1fd7fe4a599a0c1b22dfa1d35124622589776d16;hpb=da8f2a565cd9522f2a3a1400e538d1853374aa08;p=gnulib.git diff --git a/tests/test-mkdir.h b/tests/test-mkdir.h index 1fd7fe4a5..62e8ec423 100644 --- a/tests/test-mkdir.h +++ b/tests/test-mkdir.h @@ -1,9 +1,9 @@ /* Test of mkdir() function. - Copyright (C) 2009 Free Software Foundation, Inc. + Copyright (C) 2009-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or + the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -33,7 +33,7 @@ test_mkdir (int (*func) (char const *, mode_t), bool print) ASSERT (errno == ENOTDIR || errno == EEXIST); errno = 0; ASSERT (func (BASE "file/dir", 0700) == -1); - ASSERT (errno == ENOTDIR || errno == ENOENT); + ASSERT (errno == ENOTDIR || errno == ENOENT || errno == EOPNOTSUPP); ASSERT (unlink (BASE "file") == 0); errno = 0; ASSERT (func ("", 0700) == -1); @@ -67,7 +67,7 @@ test_mkdir (int (*func) (char const *, mode_t), bool print) if (symlink (BASE "dir", BASE "link")) { 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; }