func TestForbiddenDeps(t *testing.T) { defer leaktest.AfterTest(t)() // Verify kv does not depend on storage (or any of its subpackages). buildutil.VerifyNoImports(t, "github.com/cockroachdb/cockroach/pkg/kv", true, // TODO(tschottdorf): should really disallow ./storage/... but at the // time of writing there's a (legit) dependency on `enginepb`. []string{ "github.com/cockroachdb/cockroach/pkg/storage", "github.com/cockroachdb/cockroach/pkg/storage/engine", }, []string{}) }
func TestNoLinkForbidden(t *testing.T) { defer leaktest.AfterTest(t)() // Verify that the cockroach binary doesn't depend on certain packages. buildutil.VerifyNoImports(t, "github.com/cockroachdb/cockroach", true, []string{ "testing", // defines flags "go/build", // probably not something we want in the main binary "github.com/cockroachdb/cockroach/pkg/security/securitytest", // contains certificates }, []string{ "github.com/cockroachdb/cockroach/pkg/testutils", // meant for testing code only }) }