Skip to content

Commit 9d60845

Browse files
committed
Add test for branch fetches fixed by PR 2160
To verify the behavior is not broken with future fetch or zip handling updates. Bug: 476141347
1 parent d2c814b commit 9d60845

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

e2etests/cvd/launch_cvd_tests/main_test.go

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,35 +22,40 @@ import (
2222

2323
func TestLaunchCvd(t *testing.T) {
2424
testcases := []struct {
25-
name string
25+
name string
2626
branch string
2727
target string
2828
}{
2929
{
30-
name: "GitMainPhone",
30+
name: "GitMainPhone",
3131
branch: "git_main",
3232
target: "aosp_cf_x86_64_only_phone-trunk_staging-userdebug",
3333
},
3434
{
35-
name: "AospMainPhone",
35+
name: "AospMainPhone",
3636
branch: "aosp-android-latest-release",
3737
target: "aosp_cf_x86_64_only_phone-userdebug",
3838
},
3939
{
40-
name: "Aosp14GsiPhone",
40+
name: "Aosp14GsiPhone",
4141
branch: "aosp-android14-gsi",
4242
target: "aosp_cf_x86_64_phone-userdebug",
4343
},
4444
{
45-
name: "Aosp13GsiPhone",
45+
name: "Aosp13GsiPhone",
4646
branch: "aosp-android13-gsi",
4747
target: "aosp_cf_x86_64_phone-userdebug",
4848
},
4949
{
50-
name: "Aosp12GsiPhone",
50+
name: "Aosp12GsiPhone",
5151
branch: "aosp-android12-gsi",
5252
target: "aosp_cf_x86_64_phone-userdebug",
5353
},
54+
{
55+
name: "Aosp11GsiPhone",
56+
branch: "aosp-android11-gsi",
57+
target: "aosp_cf_x86_64_only_phone-userdebug",
58+
},
5459
}
5560
for _, tc := range testcases {
5661
t.Run(tc.name, func(t *testing.T) {

0 commit comments

Comments
 (0)