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.
Steven Allen committed
Aug 23, 2019 at 14:48 UTC
17533b43787b850156527df6bad8855c4c8f5c4a
1 file changed
+2
-2
test/sharness/t0170-dht.sh
+2
-2
@@ -30,13 +30,13 @@ test_dht() {
30
'
31
32
# ipfs dht put <key> <value>
33
- test_expect_success 'put with good keys' '
33
+ test_expect_failure 'put with good keys (#3124)' '
34
ipfsi 0 dht put "$TEST_DHT_PATH" "$TEST_DHT_VALUE" | sort >putted &&
35
[ -s putted ] ||
36
test_fsh cat putted
37
'
38
39
- test_expect_success 'put round trips' '
39
+ test_expect_failure 'put round trips (#3124)' '
40
echo -n "$TEST_DHT_VALUE" >expected &&
41
ipfsi 0 dht get "$TEST_DHT_PATH" >actual &&
42
test_cmp actual expected