From f9007221961ada32586bcdc50fe1791e1f9b47ab Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Thu, 29 Mar 2018 12:49:02 -0700 Subject: [PATCH] [DO NOT MERGE] temporarily fix init test See: https://github.com/ipfs/go-ds-flatfs/issues/37 License: MIT Signed-off-by: Steven Allen --- test/sharness/t0020-init.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/sharness/t0020-init.sh b/test/sharness/t0020-init.sh index ffaa71152c8..51fc90a86dc 100755 --- a/test/sharness/t0020-init.sh +++ b/test/sharness/t0020-init.sh @@ -84,6 +84,7 @@ test_expect_success "ipfs init output looks good" ' echo "initializing IPFS node at $IPFS_PATH" >expected && echo "generating $BITS-bit RSA keypair...done" >>expected && echo "peer identity: $PEERID" >>expected && + echo "Calculating datastore size. This might take 5m0s at most and will happen only once" >>expected && # TODO: REMOVE THIS! echo "to get started, enter:" >>expected && printf "\\n\\t$STARTFILE\\n\\n" >>expected && test_cmp expected actual_init @@ -111,6 +112,7 @@ test_expect_success "'ipfs init --empty-repo' output looks good" ' echo "initializing IPFS node at $IPFS_PATH" >expected && echo "generating $BITS-bit RSA keypair...done" >>expected && echo "peer identity: $PEERID" >>expected && + echo "Calculating datastore size. This might take 5m0s at most and will happen only once" >>expected && # TODO: REMOVE THIS! test_cmp expected actual_init '