Skip to content

Instantly share code, notes, and snippets.

View chriscool's full-sized avatar

Christian Couder chriscool

View GitHub Profile

IPFS Implementation Status

Legend: 🍏 Passed   🍋 Didn't run   🍅 Failed   🌰 No test implemented

Command status_test_2019_03_04.txt status_test_2019_03_05.txt
ipfs add 🍅: 5 🍏: 1 🍋: 232 🍏: 17 🍋: 221
ipfs add --cid-version 🍋: 15 🍋: 15
ipfs add --dereference-args 🍋: 1 🍋: 1
ipfs add --fscache 🍋: 1
@chriscool
chriscool / sharness.sh
Last active September 4, 2015 12:23
Alternative code to allow sharness extensions in srcdir/sharness.d
#
# Load any extensions in $srcdir/sharness.d/*.sh
#
if test -d "${SHARNESS_TEST_SRCDIR}/sharness.d"
then
for file in "${SHARNESS_TEST_SRCDIR}"/sharness.d/*.sh
do
# Ensure glob was not an empty match
test -e "${file}" || break
@chriscool
chriscool / t0060-names.sh
Created November 12, 2014 21:42
Test for ipfs name resolution with debug commands
#!/bin/sh
#
# Copyright (c) 2014 Jeromy Johnson
# MIT Licensed; see the LICENSE file in this repository.
#
test_description="test ipns name resolution"
. lib/test-lib.sh
@chriscool
chriscool / t0060-names.sh
Created November 12, 2014 07:20
Test for ipfs name resolution
#!/bin/sh
#
# Copyright (c) 2014 Jeromy Johnson
# MIT Licensed; see the LICENSE file in this repository.
#
test_description="test ipns name resolution"
. lib/test-lib.sh