ceph/branches/ebofs/test/testxattr.cc
sageweil dc48f25847 branch for ebofs changes
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@2100 29311d96-e01e-0410-9327-a35deaab8ce9
2007-11-21 00:32:00 +00:00

32 lines
703 B
C++

#include <iostream>
using namespace std;
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/file.h>
#include <iostream>
#include <cassert>
#include <errno.h>
#include <dirent.h>
#include <sys/xattr.h>
int main(int argc, char**argv)
{
int a = 1;
int b = 2;
mknod("test", 0600, 0);
cout << "setxattr " << setxattr("test", "asdf", &a, sizeof(a), 0) << endl;
cout << "errno " << errno << " " << strerror(errno) << endl;
cout << "getxattr " << getxattr("test", "asdf", &b, sizeof(b)) << endl;
cout << "errno " << errno << " " << strerror(errno) << endl;
cout << "a is " << a << " and b is " << b << endl;
return 0;
}