From a661f7f54cef34aa39894818568a2c1b462e8cbc Mon Sep 17 00:00:00 2001 From: Nithya Balachandran Date: Tue, 5 May 2015 23:47:58 +0530 Subject: tests: Spurious failure in fop-sanity.t Modified the calls to open in fops-sanity.c to pass in the mode as well if flags includes O_CREAT (as per man page). The missing mode randomly caused T files to be created causing DHT to treat them as linkto files and fail the fop. Modified 2 other files where the mode was not being provided. Change-Id: I047573d43655b4957d0703f7df36238f7e729c1f BUG: 1218951 Signed-off-by: Nithya Balachandran Reviewed-on: http://review.gluster.org/10590 Tested-by: Gluster Build System Tested-by: NetBSD Build System Reviewed-by: Raghavendra G Tested-by: Raghavendra G --- tests/bugs/fuse/bug-1126048.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/bugs/fuse/bug-1126048.c') diff --git a/tests/bugs/fuse/bug-1126048.c b/tests/bugs/fuse/bug-1126048.c index 5b9afafef0f..60329955258 100644 --- a/tests/bugs/fuse/bug-1126048.c +++ b/tests/bugs/fuse/bug-1126048.c @@ -19,7 +19,7 @@ main (int argc, char **argv) char *cmd = argv[1]; printf ("cmd is: %s\n", cmd); - fd = open("a.txt", O_CREAT|O_RDWR); + fd = open("a.txt", O_CREAT|O_RDWR, 0644); if (fd < 0) printf ("open failed: %s\n", strerror(errno)); -- cgit