Whamcloud - gitweb
land b1_5 onto HEAD
[fs/lustre-release.git] / lustre / tests / open_delay.c
diff --git a/lustre/tests/open_delay.c b/lustre/tests/open_delay.c
deleted file mode 100644 (file)
index e4f46dc..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#include <fcntl.h>
-#include <unistd.h>
-#include <stdlib.h>
-#include <stdio.h>
-#include <lustre/lustre_user.h>
-
-int main(int argc, char **argv)
-{
-        int fd;
-
-        if (argc != 2) {
-                printf("Usage %s <filename>\n", argv[0]);
-                exit(1);
-        }
-
-        fd = open(argv[1], O_RDONLY | O_LOV_DELAY_CREATE);
-        if (fd == -1) {
-                printf("Error opening %s\n", argv[1]);
-                exit(1);
-        }
-
-        return 0;
-}