Description: Disable tests that rely on the _testcases submodule
 The upstream project relies on a Git submodule to provide some data
 for some test cases. That's not cloned into the Debian package so we
 disable those tests.
Author: Taavi Väänänen <hi@taavi.wtf>
Forwarded: not-needed
--- a/parser_test.go
+++ b/parser_test.go
@@ -146,6 +146,8 @@
 }
 
 func TestMsgSplit(t *testing.T) {
+	t.Skip("Disabled as the _testcases submodule is not available")
+
 	t.Parallel()
 
 	data, err := ioutil.ReadFile("./_testcases/tests/msg-split.yaml")
@@ -204,6 +206,8 @@
 }
 
 func TestMsgJoin(t *testing.T) {
+	t.Skip("Disabled as the _testcases submodule is not available")
+
 	var ok bool
 
 	t.Parallel()
@@ -249,6 +253,8 @@
 }
 
 func TestUserhostSplit(t *testing.T) {
+	t.Skip("Disabled as the _testcases submodule is not available")
+
 	t.Parallel()
 
 	data, err := ioutil.ReadFile("./_testcases/tests/userhost-split.yaml")
