Skip to content

Commit

Permalink
TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
adityagesh committed Nov 12, 2024
1 parent 481efdb commit ca777f0
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions microsoft/testsuites/core/vm_resize.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
from pathlib import PurePath
import time
from typing import Any, Optional, cast

Expand All @@ -18,6 +19,7 @@
from lisa.schema import NodeSpace
from lisa.testsuite import TestResult
from lisa.tools import Lscpu
from lisa.tools.b4 import B4
from lisa.util.logger import Logger


Expand Down Expand Up @@ -85,8 +87,12 @@ def verify_vm_hot_resize_decrease(self, result: TestResult) -> None:
supported_features=[Resize, StartStop],
),
)
def verify_vm_resize_increase(self, result: TestResult) -> None:
self._verify_vm_resize(test_result=result, hot_resize=False)
def verify_vm_resize_increase(self, node: Node, result: TestResult) -> None:
b4 = node.tools[B4]
b4.am(
"<[email protected]>",
PurePath("/home/lisatest"),
)

@TestCaseMetadata(
description="""
Expand Down

0 comments on commit ca777f0

Please sign in to comment.