github.com/mhilton/juju-juju@v0.0.0-20150901100907-a94dd2c73455/utils/syslog/package_test.go (about)

     1  // Copyright 2014 Canonical Ltd.
     2  // Licensed under the AGPLv3, see LICENCE file for details.
     3  
     4  package syslog_test
     5  
     6  import (
     7  	"runtime"
     8  	"testing"
     9  
    10  	gc "gopkg.in/check.v1"
    11  )
    12  
    13  func TestPackage(t *testing.T) {
    14  	//TODO(bogdanteleaga): Fix this on windows
    15  	if runtime.GOOS == "windows" {
    16  		t.Skip("bug 1403084: Skipping rsyslog tests on windows")
    17  	}
    18  	gc.TestingT(t)
    19  }