X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-mkdir.h;h=62e8ec4238700d928c64e8fcf8136b10a046e224;hb=668d099b94c3e88afc7e1957858adc963f072124;hp=61a3ef6fe5b33a6a0335bd746a58f467a8049f56;hpb=231bdaf6198a766ae5442fef6f4b8e661d523868;p=gnulib.git diff --git a/tests/test-mkdir.h b/tests/test-mkdir.h index 61a3ef6fe..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);