From 71496826955cacac37abfd5fd017340a04988971 Mon Sep 17 00:00:00 2001 From: Krishnan Parthasarathi Date: Wed, 20 Mar 2013 23:01:39 +0530 Subject: glusterfsd: Fixed fd leak due to use of tmpfile() Change-Id: I3c2dc070ebe967100170e39f3545acacc6016d61 BUG: 924075 Signed-off-by: Krishnan Parthasarathi Reviewed-on: http://review.gluster.org/4703 Tested-by: Gluster Build System Reviewed-by: Jeff Darcy --- tests/bugs/bug-924075.t | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 tests/bugs/bug-924075.t (limited to 'tests') diff --git a/tests/bugs/bug-924075.t b/tests/bugs/bug-924075.t new file mode 100755 index 000000000..f4e03e33a --- /dev/null +++ b/tests/bugs/bug-924075.t @@ -0,0 +1,23 @@ +#!/bin/bash + +. $(dirname $0)/../include.rc +. $(dirname $0)/../volume.rc + +cleanup; + +#FIXME: there is another patch which moves the following function into +#include.rc +function process_leak_count () +{ + local pid=$1; + return $(ls -lh /proc/$pid/fd | grep "(deleted)" | wc -l) +} + +TEST glusterd; +TEST $CLI volume create $V0 $H0:$B0/${V0}1; +TEST $CLI volume start $V0; +TEST glusterfs -s $H0 --volfile-id $V0 $M0; +mount_pid=$(get_mount_process_pid $V0); +TEST process_leak_count $mount_pid; + +cleanup; -- cgit