Skip to content

Commit e85ee10

Browse files
committed
Added e2e debug output
1 parent 4befc07 commit e85ee10

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/e2e/multi-disk_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ func verifyDisks(ctx context.Context, input DiskSpecInput) {
8787
diskCount := 1 + len(vm.Spec.DataDisks)
8888
Expect(diskCount).ToNot(Equal(1), "Total disk count should be larger than 1 for this test")
8989

90+
finderVMs, err := input.Finder.VirtualMachineList(ctx, "/...")
91+
for _, finderVm := range finderVMs {
92+
fmt.Printf("Found vm %s\n", finderVm.Name())
93+
}
94+
9095
vmObj, err := input.Finder.VirtualMachine(ctx, vm.Name)
9196
Expect(err).NotTo(HaveOccurred())
9297

0 commit comments

Comments
 (0)