-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
481efdb
commit dd17df7
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,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 | ||
|
||
|
||
|
@@ -85,8 +86,9 @@ 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]>") | ||
|
||
@TestCaseMetadata( | ||
description=""" | ||
|