diff options
author | Vijay Bellur <vbellur@redhat.com> | 2013-04-08 00:46:27 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2013-04-08 14:21:39 -0700 |
commit | e0fac0b68ff23a87da3eda4ced7a60b3e2fcf77a (patch) | |
tree | 6ccedd01ddb2262487c998027824af430ad2df96 /tests/bugs | |
parent | 6f6744730e34fa8a161b5f7f2a8ad3f8a7fc30fa (diff) |
glusterfsd: Cleanup temporary files from /tmp
For each gluster{d,fs,fsd} start, one or more temporary
file(s) created in /tmp were not being unlinked. This
patch cleans that up.
Modified a typo in an unrelated log message as well.
Change-Id: I3dec2a2ca40c7d6828eb238ec9cd08b6072cf0dd
BUG: 949327
Signed-off-by: Vijay Bellur <vbellur@redhat.com>
Reviewed-on: http://review.gluster.org/4786
Reviewed-by: Krishnan Parthasarathi <kparthas@redhat.com>
Reviewed-by: Raghavendra Bhat <raghavendra@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Diffstat (limited to 'tests/bugs')
-rw-r--r-- | tests/bugs/949327.t | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/bugs/949327.t b/tests/bugs/949327.t new file mode 100644 index 00000000000..7b0c5c51a81 --- /dev/null +++ b/tests/bugs/949327.t @@ -0,0 +1,23 @@ +#!/bin/bash + +. $(dirname $0)/../include.rc +. $(dirname $0)/../volume.rc + +cleanup; + +function tmp_file_count() +{ +echo $(ls -lh /tmp/tmp.* | wc -l) +} + + +old_count=$(tmp_file_count); +TEST glusterd +TEST pidof glusterd +TEST $CLI volume create $V0 replica 2 $H0:$B0/${V0}0 $H0:$B0/${V0}1 +TEST $CLI volume start $V0 +new_count=$(tmp_file_count); + +TEST [ "$old_count" -eq "$new_count" ] + +cleanup |