Merge pull request #4434 from ipfs/kevina/test-symlink-test-fail

Increase verboseness of t0088-repo-stat-symlink.sh test.
This commit is contained in:
Whyrusleeping 2017-11-28 11:22:35 -08:00 committed by GitHub
commit a81025f891
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,6 +21,7 @@ test_expect_success "'ipfs repo stat' RepoSize is correct with sym link" '
reposize_direct=$(ipfs repo stat | grep RepoSize | awk '\''{ print $2 }'\'') &&
export IPFS_PATH=".ipfs" &&
reposize_symlink=$(ipfs repo stat | grep RepoSize | awk '\''{ print $2 }'\'') &&
echo "reposize_symlink: $reposize_symlink; reposize_direct: $reposize_direct" &&
test $reposize_symlink -ge $reposize_direct
'