Whamcloud - gitweb
6cf823a6af8014abd4194512d7ed849cdfe99625
[fs/lustre-release.git] / lustre / tests / multifstat.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  */
26 /*
27  * This file is part of Lustre, http://www.lustre.org/
28  * Lustre is a trademark of Sun Microsystems, Inc.
29  */
30
31 #include <stdio.h>
32 #include <sys/types.h>
33 #include <sys/stat.h>
34 #include <unistd.h>
35 #include <fcntl.h>
36 #include <errno.h>
37 #include <string.h>
38
39 int main(int argc, char **argv)
40 {
41         int fd1, fd2;
42         struct stat st1, st2;
43
44         if (argc != 3) {
45                 printf("Usage %s file1 file2\n", argv[0]);
46                 return 1;
47         }
48
49
50         fd1 = open(argv[1], O_CREAT| O_RDWR, 0666);
51         if (fd1 == -1) {
52                 printf("Error opening %s: %s\n", argv[1], strerror(errno));
53                 return errno;
54         }
55
56         fd2 = open(argv[2], O_RDONLY);
57         if (fd2 == -1) {
58                 printf("Error opening %s: %s\n", argv[2], strerror(errno));
59                 return errno;
60         }
61
62         sleep(1);
63
64         if ( write(fd1, "hello", strlen("hello")) != strlen("hello")) {
65                 printf("Error writing: %s\n", strerror(errno));
66                 return errno;
67         }
68
69         if ( fstat(fd1, &st1) ) {
70                 printf("Error statting %s: %s\n", argv[1], strerror(errno));
71                 return errno;
72         }
73
74         if ( fstat(fd2, &st2) ) {
75                 printf("Error statting %s: %s\n", argv[2], strerror(errno));
76                 return errno;
77         }
78
79         if ( st1.st_size != st2.st_size ) {
80                 printf("Sizes don't match %lu, %lu\n",
81                        (unsigned long)st1.st_size,
82                        (unsigned long)st2.st_size);
83                 return 1;
84         }
85
86         if ( st1.st_mtime != st2.st_mtime ) {
87                 printf("Mtimes don't match %ld, %ld\n",
88                        st1.st_mtime, st2.st_mtime);
89                 return 1;
90         }
91
92         if ( st1.st_blocks != st2.st_blocks ) {
93                 printf("Blocks don't match %ld, %ld\n",
94                        (long)st1.st_blocks, (long)st2.st_blocks);
95                 return 1;
96         }
97
98         return 0;
99 }