X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-mkdir.h;h=62e8ec4238700d928c64e8fcf8136b10a046e224;hb=69be788393cc7d52413d9d2782117326d4c15899;hp=5707485dee500f70773d676cdc4847bb2f993d36;hpb=ba2d9dffa77a8a1ff255b51820d2d791c909e779;p=gnulib.git diff --git a/tests/test-mkdir.h b/tests/test-mkdir.h index 5707485de..62e8ec423 100644 --- a/tests/test-mkdir.h +++ b/tests/test-mkdir.h @@ -1,5 +1,5 @@ /* 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 @@ -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);