X-Git-Url: http://git.megacz.com/?p=nestedvm.git;a=blobdiff_plain;f=src%2Ftests%2FTest.c;h=88e1eb664589ab4ac2417bed001f6b9337e83902;hp=5b0dda05843dfca8838ffe1157142cabdbede8dd;hb=034a42fa65955289442614ef9914e5474fac62aa;hpb=40de2c62cb907622ff6f5fcdbeccc8773a1d7b2d diff --git a/src/tests/Test.c b/src/tests/Test.c index 5b0dda0..88e1eb6 100644 --- a/src/tests/Test.c +++ b/src/tests/Test.c @@ -131,8 +131,8 @@ int main(int argc, char **argv) { printf("Tyring to mkdir .mkdirtest\n"); if(mkdir(".mkdirtest",0700) < 0) perror("mkdir"); - printf("Trying to opendir /\n"); - dir = opendir("/"); + printf("Trying to opendir .\n"); + dir = opendir("."); if(dir) { while((dent=readdir(dir))!=NULL) printf("\t[%s] %lu\n",dent->d_name,dent->d_ino);