Whamcloud - gitweb
LU-13128 osc: glimpse and lock cancel race
[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         fd1 = open(argv[1], O_CREAT | O_RDWR, 0666);
50         if (fd1 == -1) {
51                 printf("Error opening %s: %s\n", argv[1], strerror(errno));
52                 return errno;
53         }
54
55         fd2 = open(argv[2], O_RDONLY);
56         if (fd2 == -1) {
57                 printf("Error opening %s: %s\n", argv[2], strerror(errno));
58                 return errno;
59         }
60
61         sleep(1);
62
63         if (write(fd1, "hello", strlen("hello")) != strlen("hello")) {
64                 printf("Error writing: %s\n", strerror(errno));
65                 return errno;
66         }
67
68         if (fstat(fd1, &st1)) {
69                 printf("Error statting %s: %s\n", argv[1], strerror(errno));
70                 return errno;
71         }
72
73         if (fstat(fd2, &st2)) {
74                 printf("Error statting %s: %s\n", argv[2], strerror(errno));
75                 return errno;
76         }
77
78         if (st1.st_size != st2.st_size) {
79                 printf("Sizes don't match %lu, %lu\n",
80                        (unsigned long)st1.st_size,
81                        (unsigned long)st2.st_size);
82                 return 1;
83         }
84
85         if (st1.st_mtime != st2.st_mtime) {
86                 printf("Mtimes don't match %ld, %ld\n",
87                        st1.st_mtime, st2.st_mtime);
88                 return 1;
89         }
90
91         if (st1.st_blocks != st2.st_blocks) {
92                 printf("Blocks don't match %ld, %ld\n",
93                        (long)st1.st_blocks, (long)st2.st_blocks);
94                 return 1;
95         }
96
97         return 0;
98 }