aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorJanoš Guljaš <janos@users.noreply.github.com>2018-08-09 22:14:30 +0800
committerBalint Gabor <balint.g@gmail.com>2018-08-09 22:14:30 +0800
commitd3e4c2dcb00eb61c32dd3a9b94a317727c2449a7 (patch)
treec2a75744d23ca3f94a8ef7e27800d87e9c274931 /cmd
parent7b5c3758250ffc78c7a5ce14c1b736a38d548423 (diff)
downloadgo-tangerine-d3e4c2dcb00eb61c32dd3a9b94a317727c2449a7.tar
go-tangerine-d3e4c2dcb00eb61c32dd3a9b94a317727c2449a7.tar.gz
go-tangerine-d3e4c2dcb00eb61c32dd3a9b94a317727c2449a7.tar.bz2
go-tangerine-d3e4c2dcb00eb61c32dd3a9b94a317727c2449a7.tar.lz
go-tangerine-d3e4c2dcb00eb61c32dd3a9b94a317727c2449a7.tar.xz
go-tangerine-d3e4c2dcb00eb61c32dd3a9b94a317727c2449a7.tar.zst
go-tangerine-d3e4c2dcb00eb61c32dd3a9b94a317727c2449a7.zip
cmd/swarm: disable TestCLISwarmFs fuse test on darwin (#17340)
Diffstat (limited to 'cmd')
-rw-r--r--cmd/swarm/fs_test.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/cmd/swarm/fs_test.go b/cmd/swarm/fs_test.go
index a2b730bd5..4f38b094b 100644
--- a/cmd/swarm/fs_test.go
+++ b/cmd/swarm/fs_test.go
@@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
-// +build linux darwin freebsd
+// +build linux freebsd
package main
@@ -43,12 +43,12 @@ type testFile struct {
}
// TestCLISwarmFs is a high-level test of swarmfs
+//
+// This test fails on travis for macOS as this executable exits with code 1
+// and without any log messages in the log:
+// /Library/Filesystems/osxfuse.fs/Contents/Resources/load_osxfuse.
+// This is the reason for this file not being built on darwin architecture.
func TestCLISwarmFs(t *testing.T) {
- // This test fails on travis as this executable exits with code 1
- // and without any log messages in the log.
- // /Library/Filesystems/osxfuse.fs/Contents/Resources/load_osxfuse
- t.Skip()
-
cluster := newTestCluster(t, 3)
defer cluster.Shutdown()