Skip to content

Commit

Permalink
Dpdk: add test annotation to 32bit test
Browse files Browse the repository at this point in the history
  • Loading branch information
mcgov committed Nov 19, 2024
1 parent 6ab0d27 commit cef07ea
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions microsoft/testsuites/dpdk/dpdksuite.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,13 @@ def verify_dpdk_build_netvsc(
),
)
def verify_dpdk_build_netvsc_32bit(
self, node: Node, log: Logger, variables: Dict[str, Any]
self, node: Node, log: Logger, variables: Dict[str, Any], result: TestResult
) -> None:
skip_32bit_test_on_unsupported_distros(node.os)
force_dpdk_default_source(variables, build_arch=CpuArchitecture.I386)
verify_dpdk_build(node, log, variables, "netvsc", HugePageSize.HUGE_2MB)
verify_dpdk_build(
node, log, variables, "netvsc", HugePageSize.HUGE_2MB, result=result
)

@TestCaseMetadata(
description="""
Expand All @@ -150,6 +152,7 @@ def verify_dpdk_send_receive_netvsc_32bit(
environment: Environment,
log: Logger,
variables: Dict[str, Any],
result: TestResult,
) -> None:
node = environment.default_node
skip_32bit_test_on_unsupported_distros(node.os)
Expand All @@ -161,6 +164,7 @@ def verify_dpdk_send_receive_netvsc_32bit(
"netvsc",
HugePageSize.HUGE_2MB,
multiple_queues=True,
result=result,
)

@TestCaseMetadata(
Expand Down

0 comments on commit cef07ea

Please sign in to comment.