From c42dad1c0e721aabdd6ebee419b413f69b1bbe1b Mon Sep 17 00:00:00 2001 From: huanghua Date: Wed, 27 Sep 2006 04:29:58 +0000 Subject: [PATCH] different error value for different failure case --- lustre/tests/opendirunlink.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lustre/tests/opendirunlink.c b/lustre/tests/opendirunlink.c index 5e70f7d..11b954a 100644 --- a/lustre/tests/opendirunlink.c +++ b/lustre/tests/opendirunlink.c @@ -48,7 +48,7 @@ int main(int argc, char **argv) if (fddir1 == -1) { fprintf(stderr, "open %s fails: %s\n", dname1, strerror(errno)); - exit(1); + exit(2); } // doesn't matter if the two dirs are the same?? @@ -56,7 +56,7 @@ int main(int argc, char **argv) if (fddir2 == -1) { fprintf(stderr, "open %s fails: %s\n", dname2, strerror(errno)); - exit(1); + exit(3); } // another method @@ -74,17 +74,17 @@ int main(int argc, char **argv) if (rc) { fprintf(stderr, "unlink %s error: %s\n", dname1, strerror(errno)); - exit(1); + exit(4); } if (access(dname2, F_OK) == 0){ fprintf(stderr, "%s still exists\n", dname2); - exit(1); + exit(5); } if (access(dname1, F_OK) == 0){ fprintf(stderr, "%s still exists\n", dname1); - exit(1); + exit(6); } // fchmod the dir @@ -93,7 +93,7 @@ int main(int argc, char **argv) { fprintf(stderr, "fchmod unlinked dir fails %s\n", strerror(errno)); - exit(1); + exit(7); } // fstat two dirs to check if they are the same @@ -102,19 +102,19 @@ int main(int argc, char **argv) { fprintf(stderr, "fstat unlinked dir %s fails %s\n", dname1, strerror(errno)); - exit(1); + exit(8); } rc = fstat(fddir2, &st2); if (rc == -1) { fprintf(stderr, "fstat dir %s fails %s\n", dname2, strerror(errno)); - exit(1); + exit(9); } if (st1.st_mode != st2.st_mode) { // can we do this? fprintf(stderr, "fstat different value on %s and %s\n", dname1, dname2); - exit(1); + exit(10); } fprintf(stderr, "Ok, everything goes well.\n"); -- 1.8.3.1