summaryrefslogtreecommitdiffstats
path: root/tests/bugs/glusterd/bug-824753-file-locker.c
diff options
context:
space:
mode:
authorJeff Darcy <jdarcy@redhat.com>2015-04-08 17:17:13 -0400
committerVijay Bellur <vbellur@redhat.com>2015-04-09 09:49:32 +0000
commit0086a55bb7de1ef5dc7a24583f5fc2b560e835fd (patch)
tree31f4bffae392f0d0601b22b22a0573daea4f60f7 /tests/bugs/glusterd/bug-824753-file-locker.c
parent093639d8003695889923cc7a106519c1f9a4e2f0 (diff)
tests: remove tests for clear-locks
These are suspected of causing core dumps during regression tests, leading to spurious failures. Per email conversation, since this isn't a supported feature anyway, the tests are being removed to facilitate testing of features we do support. Change-Id: I7fd5c76d26dd6c3ffa91f89fc10469ae3a63afdf BUG: 1195415 Signed-off-by: Jeff Darcy <jdarcy@redhat.com> Reviewed-on: http://review.gluster.org/10167 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com> Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'tests/bugs/glusterd/bug-824753-file-locker.c')
-rw-r--r--tests/bugs/glusterd/bug-824753-file-locker.c42
1 files changed, 0 insertions, 42 deletions
diff --git a/tests/bugs/glusterd/bug-824753-file-locker.c b/tests/bugs/glusterd/bug-824753-file-locker.c
deleted file mode 100644
index ea8a7630e81..00000000000
--- a/tests/bugs/glusterd/bug-824753-file-locker.c
+++ /dev/null
@@ -1,42 +0,0 @@
-#include <stdio.h>
-#include <string.h>
-#include <fcntl.h>
-
-int main (int argc, char *argv[])
-{
- int fd = -1;
- int ret = -1;
- char command[2048] = "";
- char filepath[255] = "";
- struct flock fl;
-
- fl.l_type = F_WRLCK;
- fl.l_whence = SEEK_SET;
- fl.l_start = 7;
- fl.l_len = 1;
- fl.l_pid = getpid();
-
- snprintf(filepath, 255, "%s/%s", argv[4], argv[5]);
-
- fd = open(filepath, O_RDWR);
-
- if (fd == -1)
- return -1;
-
- if (fcntl(fd, F_SETLKW, &fl) == -1) {
- return -1;
- }
-
- snprintf(command, sizeof(command),
- "gluster volume clear-locks %s /%s kind all posix 0,7-1 |"
- " grep %s | awk -F'..: ' '{print $1}' | grep %s:%s/%s",
- argv[1], argv[5], argv[2], argv[2], argv[3], argv[1]);
-
- ret = system (command);
- close(fd);
-
- if (ret)
- return -1;
- else
- return 0;
-}