1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-07-01 02:30:39 +08:00

Rename test_kill_ipfs_mount into test_kill_ipfs_daemon

License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
This commit is contained in:
Christian Couder
2014-11-20 20:03:41 +01:00
parent e1be96133c
commit 1e077828cb
3 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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