From 17533b43787b850156527df6bad8855c4c8f5c4a Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Fri, 23 Aug 2019 14:48:11 -0700 Subject: [PATCH] sharness: disable broken test We can no longer test this with bad keys. Unfortunately, good keys will likely contain a newline and we have no way to send such keys to the server due to how API requests are formatted. --- test/sharness/t0170-dht.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/sharness/t0170-dht.sh b/test/sharness/t0170-dht.sh index d2956fea1..2e1031ae4 100755 --- a/test/sharness/t0170-dht.sh +++ b/test/sharness/t0170-dht.sh @@ -30,13 +30,13 @@ test_dht() { ' # ipfs dht put - test_expect_success 'put with good keys' ' + test_expect_failure 'put with good keys (#3124)' ' ipfsi 0 dht put "$TEST_DHT_PATH" "$TEST_DHT_VALUE" | sort >putted && [ -s putted ] || test_fsh cat putted ' - test_expect_success 'put round trips' ' + test_expect_failure 'put round trips (#3124)' ' echo -n "$TEST_DHT_VALUE" >expected && ipfsi 0 dht get "$TEST_DHT_PATH" >actual && test_cmp actual expected