ceph/branches/riccardo/monitor2/test/testxattr.cc
riccardo80 07ac5d3e74 creating branch for distributed monitor
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@1068 29311d96-e01e-0410-9327-a35deaab8ce9
2007-02-01 05:43:23 +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;
}