X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-mkdir.h;h=1c5ba7dea6ddd95a7b896c964d73289f3c028b3e;hb=4779b635ef35c7b0bc4044fcb5bc746d06f158c4;hp=1fd7fe4a599a0c1b22dfa1d35124622589776d16;hpb=da8f2a565cd9522f2a3a1400e538d1853374aa08;p=gnulib.git diff --git a/tests/test-mkdir.h b/tests/test-mkdir.h index 1fd7fe4a5..1c5ba7dea 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-2013 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; }