summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorKaleb S. KEITHLEY <kkeithle@redhat.com>2014-11-18 14:44:59 -0500
committerRaghavendra Bhat <raghavendra@redhat.com>2015-03-03 23:32:16 -0800
commitb887c4ee9338215ce11aa350c97fcc6f133fcce7 (patch)
treefd52c7395762ac83e551b7015a61cf9d99325554 /tests
parentb646678334f4fab78883ecc1b993ec0cb1b49aba (diff)
api: versioned symbols in libgfapi.so for compatibility
Use versioned symbols to keep libgfapi at libgfapi.so.0.0.0 Revisited to address broken build on Mac OS X See http://review.gluster.org/9055 Change-Id: I0f26668898749f57b61490b18f1f04c42996225d BUG: 1165129 Signed-off-by: Kaleb S. KEITHLEY <kkeithle@redhat.com> Reviewed-on: http://review.gluster.org/9145 Reviewed-by: Shyamsundar Ranganathan <srangana@redhat.com> Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Ravishankar N <ravishankar@redhat.com> Reviewed-by: Raghavendra Bhat <raghavendra@redhat.com>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/bugs/bug-1176062.t7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/bugs/bug-1176062.t b/tests/bugs/bug-1176062.t
index 4a9d0d95e76..3da6acb8467 100755
--- a/tests/bugs/bug-1176062.t
+++ b/tests/bugs/bug-1176062.t
@@ -22,12 +22,13 @@ dd if=/dev/zero of=$M0/a/b/c/test bs=1024k &
sleep 1
+ddpid=$(pidof dd)
+
TEST gluster volume replace-brick $V0 $H0:$B0/${V0}0 $H0:$B0/${V0}3 commit force
-sleep 10
+(sleep 10; kill -TERM $ddpid)&
-TEST kill -TERM %1
-wait %1
+wait $ddpid
# Verify that the 'dd' process was terminated by the 'kill -TERM' and not by
# any other error.
TEST [ $? -eq 143 ]