X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-mkdir.h;h=62e8ec4238700d928c64e8fcf8136b10a046e224;hb=d599e5add275f75ed08e6527b8ee4d3f4f7c3aea;hp=85894b260e9651a2563fe9c89b3f1db401f3edc0;hpb=b2e2010c7c902235b5efb5bd3c6529f61b093aa4;p=gnulib.git diff --git a/tests/test-mkdir.h b/tests/test-mkdir.h index 85894b260..62e8ec423 100644 --- a/tests/test-mkdir.h +++ b/tests/test-mkdir.h @@ -1,5 +1,5 @@ /* Test of mkdir() function. - Copyright (C) 2009, 2010 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 @@ -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);