| load("@io_bazel_rules_go//go:def.bzl", "go_test") |
| |
| go_test( |
| name = "ha_test", |
| srcs = ["run_test.go"], |
| data = [ |
| "//metropolis/test/e2e:testimages_manifest", |
| ], |
| tags = [ |
| "resources:iops:5000", |
| "resources:cpu:3", |
| # 3x2048 for nodes plus some extra. |
| "resources:ram:7000", |
| ], |
| x_defs = { |
| "xTestImagesManifestPath": "$(rlocationpath //metropolis/test/e2e:testimages_manifest )", |
| }, |
| deps = [ |
| "//metropolis/test/launch", |
| "//metropolis/test/localregistry", |
| "//metropolis/test/util", |
| "//osbase/test/launch", |
| "@io_bazel_rules_go//go/runfiles:go_default_library", |
| ], |
| ) |