Loading android/visibility_test.go +16 −1 Original line number Diff line number Diff line package android import ( "github.com/google/blueprint" "io/ioutil" "os" "testing" "github.com/google/blueprint" ) var visibilityTests = []struct { Loading Loading @@ -198,10 +199,17 @@ var visibilityTests = []struct { name: "libnested", deps: ["libexample"], }`), "other/Blueprints": []byte(` mock_library { name: "libother", deps: ["libexample"], }`), }, expectedErrors: []string{ `module "libnested" variant "android_common": depends on //top:libexample which is not` + ` visible to this module; //top:libexample is only visible to \[//top:__pkg__\]`, `module "libother" variant "android_common": depends on //top:libexample which is not` + ` visible to this module; //top:libexample is only visible to \[//top:__pkg__\]`, }, }, { Loading @@ -223,10 +231,17 @@ var visibilityTests = []struct { name: "libnested", deps: ["libexample"], }`), "other/Blueprints": []byte(` mock_library { name: "libother", deps: ["libexample"], }`), }, expectedErrors: []string{ `module "libnested" variant "android_common": depends on //top:libexample which is not` + ` visible to this module; //top:libexample is only visible to \[//top:__pkg__\]`, `module "libother" variant "android_common": depends on //top:libexample which is not` + ` visible to this module; //top:libexample is only visible to \[//top:__pkg__\]`, }, }, { Loading Loading
android/visibility_test.go +16 −1 Original line number Diff line number Diff line package android import ( "github.com/google/blueprint" "io/ioutil" "os" "testing" "github.com/google/blueprint" ) var visibilityTests = []struct { Loading Loading @@ -198,10 +199,17 @@ var visibilityTests = []struct { name: "libnested", deps: ["libexample"], }`), "other/Blueprints": []byte(` mock_library { name: "libother", deps: ["libexample"], }`), }, expectedErrors: []string{ `module "libnested" variant "android_common": depends on //top:libexample which is not` + ` visible to this module; //top:libexample is only visible to \[//top:__pkg__\]`, `module "libother" variant "android_common": depends on //top:libexample which is not` + ` visible to this module; //top:libexample is only visible to \[//top:__pkg__\]`, }, }, { Loading @@ -223,10 +231,17 @@ var visibilityTests = []struct { name: "libnested", deps: ["libexample"], }`), "other/Blueprints": []byte(` mock_library { name: "libother", deps: ["libexample"], }`), }, expectedErrors: []string{ `module "libnested" variant "android_common": depends on //top:libexample which is not` + ` visible to this module; //top:libexample is only visible to \[//top:__pkg__\]`, `module "libother" variant "android_common": depends on //top:libexample which is not` + ` visible to this module; //top:libexample is only visible to \[//top:__pkg__\]`, }, }, { Loading