OSDN Git Service

Merge pull request #201 from Bytom/v0.1
[bytom/vapor.git] / vendor / github.com / multiformats / go-multihash / test / sharness / Makefile
diff --git a/vendor/github.com/multiformats/go-multihash/test/sharness/Makefile b/vendor/github.com/multiformats/go-multihash/test/sharness/Makefile
deleted file mode 100644 (file)
index 9d19490..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-# Run tests
-#
-# Copyright (c) 2014 Christian Couder
-# MIT Licensed; see the LICENSE file in this repository.
-#
-
-# NOTE: run with TEST_VERBOSE=1 for verbose sharness tests.
-
-T = $(sort $(wildcard t[0-9][0-9][0-9][0-9]-*.sh))
-BINS = bin/multihash
-SHARNESS = lib/sharness/sharness.sh
-MULTIHASH_CMD = ../../multihash
-MULTIHASH_ROOT = ../../
-
-all: clean deps $(T) aggregate
-
-clean:
-       @echo "*** $@ ***"
-       -rm -rf test-results
-       -rm -rf $(BINS)
-
-$(T):
-       @echo "*** $@ ***"
-       ./$@
-
-aggregate:
-       @echo "*** $@ ***"
-       lib/test-aggregate-results.sh
-
-deps: $(SHARNESS) $(BINS)
-
-$(SHARNESS):
-       @echo "*** installing $@ ***"
-       lib/install-sharness.sh
-
-bin/multihash: $(MULTIHASH_ROOT)/**/*.go
-       go build -o bin/multihash $(MULTIHASH_CMD)
-
-bins: $(BINS)
-
-.PHONY: all clean $(T) aggregate