Skip to content
Snippets Groups Projects
Commit 8a3db7cb authored by Juan Batiz-Benet's avatar Juan Batiz-Benet
Browse files

testing: nofuse testing (for osx travis)

parent 06801a0e
Branches
No related tags found
1 merge request!1New
ifeq ($(TEST_NO_FUSE),1)
go_test=go test -tags nofuse
else
go_test=go test
endif
all: all:
# no-op # no-op. try:
# make install
# make test
godep: godep:
go get github.com/tools/godep go get github.com/tools/godep
...@@ -32,13 +42,13 @@ test_3node: ...@@ -32,13 +42,13 @@ test_3node:
cd test/3nodetest && make cd test/3nodetest && make
test_go_short: test_go_short:
go test -test.short ./... $(go_test) -test.short ./...
test_go_expensive: test_go_expensive:
go test ./... $(go_test) ./...
test_go_race: test_go_race:
go test ./... -race $(go_test) ./... -race
test_sharness_short: test_sharness_short:
cd test/sharness/ && make cd test/sharness/ && make
......
// Package incfusever is only here to prevent go src tools (like godep)
// from thinking fuseversion is not a required package. Though we do not
// actually use github.com/jbenet/go-fuse-version as a library, we
// _may_ need its binary. We avoid it as much as possible as compiling
// it _requires_ fuse headers. Users must be able to install go-ipfs
// without also installing fuse.
package incfusever
// Package incfusever is only here to prevent go src tools (like godep) // +build !nofuse
// from thinking fuseversion is not a required package. Though we do not
// actually use github.com/jbenet/go-fuse-version as a library, we
// _may_ need its binary. We avoid it as much as possible as compiling
// it _requires_ fuse headers. Users must be able to install go-ipfs
// without also installing fuse.
package incfusever package incfusever
import ( import (
......
// package fuse/readonly implements a fuse filesystem to access files
// stored inside of ipfs.
package readonly
// +build linux darwin freebsd // +build linux darwin freebsd
// +build !nofuse // +build !nofuse
// package fuse/readonly implements a fuse filesystem to access files
// stored inside of ipfs.
package readonly package readonly
import ( import (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment