mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-12-03 11:52:43 +00:00
chore: right size tests to supress bazel warning (#913)
This commit is contained in:
parent
9b87fa7050
commit
abbbd54a15
|
@ -116,6 +116,7 @@ go_binary(
|
|||
|
||||
go_test(
|
||||
name = "test_transition_test",
|
||||
size = "small",
|
||||
srcs = ["simple_test.go"],
|
||||
)
|
||||
|
||||
|
@ -155,6 +156,7 @@ platform_transition_test(
|
|||
|
||||
sh_test(
|
||||
name = "test_go_binary_is_x86_64",
|
||||
size = "small",
|
||||
srcs = ["test_file_type_contains.sh"],
|
||||
args = [
|
||||
"$(rootpath :transitioned_go_binary_x86_64)",
|
||||
|
@ -165,6 +167,7 @@ sh_test(
|
|||
|
||||
sh_test(
|
||||
name = "test_go_binary_is_arm64",
|
||||
size = "small",
|
||||
srcs = ["test_file_type_contains.sh"],
|
||||
args = [
|
||||
"$(rootpath :transitioned_go_binary_arm64)",
|
||||
|
@ -175,6 +178,7 @@ sh_test(
|
|||
|
||||
sh_test(
|
||||
name = "test_go_test_is_x86_64",
|
||||
size = "small",
|
||||
srcs = ["test_file_type_contains.sh"],
|
||||
args = [
|
||||
"$(rootpath :transitioned_go_test_x86_64)",
|
||||
|
@ -185,6 +189,7 @@ sh_test(
|
|||
|
||||
sh_test(
|
||||
name = "test_go_test_is_arm64",
|
||||
size = "small",
|
||||
srcs = ["test_file_type_contains.sh"],
|
||||
args = [
|
||||
"$(rootpath :transitioned_go_test_arm64)",
|
||||
|
|
|
@ -6,6 +6,7 @@ sh_library(
|
|||
|
||||
sh_test(
|
||||
name = "assert_equal_test",
|
||||
size = "small",
|
||||
srcs = ["assert_equal_test.sh"],
|
||||
deps = [
|
||||
":assert_fail",
|
||||
|
@ -16,6 +17,7 @@ sh_test(
|
|||
|
||||
sh_test(
|
||||
name = "assert_match_test",
|
||||
size = "small",
|
||||
srcs = ["assert_match_test.sh"],
|
||||
deps = [
|
||||
":assert_fail",
|
||||
|
@ -26,6 +28,7 @@ sh_test(
|
|||
|
||||
sh_test(
|
||||
name = "assert_no_match_test",
|
||||
size = "small",
|
||||
srcs = ["assert_no_match_test.sh"],
|
||||
deps = [
|
||||
":assert_fail",
|
||||
|
|
Loading…
Reference in a new issue