Browse Source

tests.cpp

tests
Antonio SJ Musumeci 4 days ago
parent
commit
4861eaf23d
  1. 1
      tests/tests.cpp

1
tests/tests.cpp

@ -332,6 +332,7 @@ test_rmdir()
int file2_fd; int file2_fd;
file2_fd = openat(dir_fd,"test-file",O_CREAT|O_EXCL,0555); file2_fd = openat(dir_fd,"test-file",O_CREAT|O_EXCL,0555);
TEST_CHECK(file2_fd >= 0); TEST_CHECK(file2_fd >= 0);
TEST_MSG("expected: 0; got: %d:%d:%s",rv,errno,strerror(errno));
struct stat st; struct stat st;
rv = fstatat(file_fd,"",&st,AT_EMPTY_PATH); rv = fstatat(file_fd,"",&st,AT_EMPTY_PATH);

Loading…
Cancel
Save