zephyr/tests/net/pm/Kconfig
Tomasz Bursztyka 9dd822dc93 tests/net: Test network power management awareness
A quick test on a dummy device that:
- opens a socket (success)
- sends data (success)
- suspends (success)
- suspends (failure)
- sends data (failure)
- resumes (success)
- resumes (failure)
- sends data (success)

This permits to show that PM states are properly handled in network
stack.

Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
2020-05-26 21:41:00 +02:00

13 lines
271 B
Plaintext

# Private config options for net pm test
# Copyright (c) 2020 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
mainmenu "Network Power-Management test"
config FAKE_DEV
def_bool y
select NET_POWER_MANAGEMENT if DEVICE_POWER_MANAGEMENT
source "Kconfig.zephyr"