提交 f70846fe 作者: Juan Benet

Merge pull request #1792 from ipfs/fix-test-cmp-args

Fix test cmp args
......@@ -18,12 +18,13 @@ test_expect_success "creating files succeeds" '
test_add_symlinks() {
test_expect_success "ipfs add files succeeds" '
ipfs add -q -r files | tail -n 1 > filehash_out
ipfs add -q -r files >filehash_all &&
tail -n 1 filehash_all >filehash_out
'
test_expect_success "output looks good" '
echo QmWdiHKoeSW8G1u7ATCgpx4yMoUhYaJBQGkyPLkS9goYZ8 > filehash_exp &&
test_cmp filehash_out filehash_exp
test_cmp filehash_exp filehash_out
'
test_expect_success "adding a symlink adds the link itself" '
......@@ -32,7 +33,7 @@ test_add_symlinks() {
test_expect_success "output looks good" '
echo "QmdocmZeF7qwPT9Z8SiVhMSyKA2KKoA2J7jToW6z6WBmxR" > goodlink_exp &&
test_cmp goodlink_out goodlink_exp
test_cmp goodlink_exp goodlink_out
'
test_expect_success "adding a broken symlink works" '
......@@ -41,7 +42,7 @@ test_add_symlinks() {
test_expect_success "output looks good" '
echo "QmWYN8SEXCgNT2PSjB6BnxAx6NJQtazWoBkTRH9GRfPFFQ" > badlink_exp &&
test_cmp badlink_out badlink_exp
test_cmp badlink_exp badlink_out
'
}
......
......@@ -27,7 +27,7 @@ test_swarm_filter_cmd() {
'
test_expect_success "'ipfs swarm filters' output looks good" '
test_sort_cmp list_actual list_expected
test_sort_cmp list_expected list_actual
'
}
......
......@@ -14,7 +14,8 @@ test_launch_ipfs_daemon
test_expect_success "'ipfs block get' adds hash to wantlist" '
export NONEXIST=QmeXxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa &&
test_expect_code 1 ipfs block get $NONEXIST --timeout=10ms &&
ipfs bitswap wantlist | grep $NONEXIST
ipfs bitswap wantlist >wantlist_out &&
grep $NONEXIST wantlist_out
'
test_expect_success "'ipfs bitswap unwant' succeeds" '
......@@ -23,8 +24,7 @@ test_expect_success "'ipfs bitswap unwant' succeeds" '
test_expect_success "hash was removed from wantlist" '
ipfs bitswap wantlist > wantlist_out &&
printf "" > wantlist_exp &&
test_cmp wantlist_out wantlist_exp
test_must_be_empty wantlist_out
'
test_kill_ipfs_daemon
......
......@@ -30,7 +30,7 @@ test_expect_success "cat that file on node2" '
test_expect_success "verify files match" '
multihash filea > expected1 &&
multihash fileb > actual1 &&
test_cmp actual1 expected1
test_cmp expected1 actual1
'
test_expect_success "shut down nodes" '
......
......@@ -30,7 +30,7 @@ test_expect_success "cat that file on node2" '
test_expect_success "verify files match" '
multihash filea > expected1 &&
multihash fileb > actual1 &&
test_cmp actual1 expected1
test_cmp expected1 actual1
'
test_expect_success "shut down nodes" '
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论