github.com/cloud-green/juju@v0.0.0-20151002100041-a00291338d3d/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 }