From: Andreas Henriksson <andreas@fatal.se>
Subject: Disable syslog check, no permision to read /var/log/syslog?!

Package build will most likely run under some kind of fakeroot
which means we won't be able to open /var/log/syslog for reading
which means the test will error if syslog is installed (opening
a socket to syslog server is normally the only thing needed
to run this test as fatal).

Forwarded: not-needed

--- a/log_test.go
+++ b/log_test.go
@@ -239,6 +239,7 @@
 }
 
 func TestSyslog(t *testing.T) {
+	t.Skip("Skip syslog test because of fakeroot usage during package build")
 	setupLogging(t)
 
 	if AddSyslogHook() != nil {
