Fix tests for cc_prebuilt_library bp2build
Also, add the tests to Soong Bug: 225938765 Test: ran tests Change-Id: Ia26e46d89b8a408eb4b09f93a7ed4f0aa2e37809
This commit is contained in:
parent
e273af2165
commit
54abd2e128
2 changed files with 4 additions and 2 deletions
|
@ -45,7 +45,9 @@ bootstrap_go_package {
|
|||
"cc_library_shared_conversion_test.go",
|
||||
"cc_library_static_conversion_test.go",
|
||||
"cc_object_conversion_test.go",
|
||||
"cc_prebuilt_library_conversion_test.go",
|
||||
"cc_prebuilt_library_shared_test.go",
|
||||
"cc_prebuilt_library_static_test.go",
|
||||
"conversion_test.go",
|
||||
"filegroup_conversion_test.go",
|
||||
"genrule_conversion_test.go",
|
||||
|
|
|
@ -136,7 +136,7 @@ cc_prebuilt_library {
|
|||
},
|
||||
bazel_module: { bp2build_available: true },
|
||||
}`,
|
||||
expectedErr: fmt.Errorf("Expected at most once source file"),
|
||||
expectedErr: fmt.Errorf("Expected at most one source file"),
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -159,7 +159,7 @@ cc_prebuilt_library {
|
|||
},
|
||||
bazel_module: { bp2build_available: true },
|
||||
}`,
|
||||
expectedErr: fmt.Errorf("Expected at most once source file"),
|
||||
expectedErr: fmt.Errorf("Expected at most one source file"),
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue