From 1e077828cb8e259652fad66cebc47437608eb3d8 Mon Sep 17 00:00:00 2001 From: Christian Couder Date: Thu, 20 Nov 2014 20:03:41 +0100 Subject: [PATCH] Rename test_kill_ipfs_mount into test_kill_ipfs_daemon License: MIT Signed-off-by: Christian Couder --- test/lib/test-lib.sh | 2 +- test/t0030-mount.sh | 4 ++-- test/t0040-add-and-cat.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/lib/test-lib.sh b/test/lib/test-lib.sh index 54bdd6821..9b0586a91 100644 --- a/test/lib/test-lib.sh +++ b/test/lib/test-lib.sh @@ -100,7 +100,7 @@ test_kill_repeat_10_sec() { ! kill -0 $1 2>/dev/null } -test_kill_ipfs_mount() { +test_kill_ipfs_daemon() { test_expect_success FUSE "'ipfs daemon' is still running" ' kill -0 $IPFS_PID diff --git a/test/t0030-mount.sh b/test/t0030-mount.sh index 88e747598..cfc99bfcc 100755 --- a/test/t0030-mount.sh +++ b/test/t0030-mount.sh @@ -17,7 +17,7 @@ fi test_launch_ipfs_mount -test_kill_ipfs_mount +test_kill_ipfs_daemon test_expect_success "mount directories can be removed" ' rmdir ipfs ipns @@ -34,6 +34,6 @@ test_expect_failure "'ipfs mount' looks good when it fails (issue #341)" ' ! grep "IPNS mounted at" actual ' -test_kill_ipfs_mount +test_kill_ipfs_daemon test_done diff --git a/test/t0040-add-and-cat.sh b/test/t0040-add-and-cat.sh index 76ce00b76..18c56cb97 100755 --- a/test/t0040-add-and-cat.sh +++ b/test/t0040-add-and-cat.sh @@ -86,6 +86,6 @@ test_expect_success FUSE "cat ipfs/bigfile looks good" ' test_cmp sha1_expected sha1_actual ' -test_kill_ipfs_mount +test_kill_ipfs_daemon test_done