Skip to content

Commit 23bb75d

Browse files
committed
Add an "additional substitution" test for "cvd create" on git_main and latest AOSP
1 parent 16fade9 commit 23bb75d

1 file changed

Lines changed: 18 additions & 1 deletion

File tree

e2etests/cvd/cvd_create_tests/BUILD.bazel

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,32 @@ load("@rules_go//go:def.bzl", "go_test")
1616

1717
go_test(
1818
name = "cvd_create_tests",
19+
size = "large",
1920
srcs = ["main_test.go"],
21+
tags = [
22+
"exclusive",
23+
"external",
24+
"no-sandbox",
25+
"supports-graceful-termination",
26+
],
2027
deps = [
21-
"//cvd/common:common",
28+
"//cvd/common",
2229
],
30+
)
31+
32+
go_test(
33+
name = "cvd_create_tests_additional_substitution",
2334
size = "large",
35+
srcs = ["main_test.go"],
36+
data = ["//:debian_substitution_marker"],
37+
env = {"LOCAL_DEBIAN_SUBSTITUTION_MARKER_FILE": "$(rlocationpath //:debian_substitution_marker)"},
2438
tags = [
2539
"exclusive",
2640
"external",
2741
"no-sandbox",
2842
"supports-graceful-termination",
2943
],
44+
deps = [
45+
"//cvd/common",
46+
],
3047
)

0 commit comments

Comments
 (0)