Increase verboseness of t0088-repo-stat-symlink.sh test.

Top help track down random test failures.

License: MIT
Signed-off-by: Kevin Atkinson <k@kevina.org>
This commit is contained in:
Kevin Atkinson 2017-11-28 13:45:27 -05:00
parent 96b87238fe
commit d2696ed498

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
'