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