-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
congure_test: initial import of CongURE test framework
- Loading branch information
Showing
8 changed files
with
722 additions
and
0 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
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
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 |
---|---|---|
@@ -1 +1,5 @@ | ||
ifneq (,$(filter congure_test,$(USEMODULE))) | ||
DIRS += test | ||
endif | ||
|
||
include $(RIOTBASE)/Makefile.base |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Copyright (c) 2021 Freie Universität Berlin | ||
# | ||
# This file is subject to the terms and conditions of the GNU Lesser | ||
# General Public License v2.1. See the file LICENSE in the top level | ||
# directory for more details. | ||
|
||
menuconfig KCONFIG_USEMODULE_CONGURE_TEST | ||
bool "Configure CongURE test framework" | ||
depends on USEMODULE_CONGURE_TEST | ||
help | ||
Configure CongURE test framework via Kconfig. | ||
|
||
if KCONFIG_USEMODULE_CONGURE_TEST | ||
config CONGURE_TEST_LOST_MSG_POOL_SIZE | ||
int "Pool size for the list elements for a lost message report" | ||
default 4 | ||
help | ||
@see congure_snd_driver_t::report_msg_lost | ||
This defines the maximum number of 3-tuples you can use with | ||
@ref congure_test_call_report() when argv[1] is msg_lost. | ||
endif # KCONFIG_USEMODULE_CONGURE_RENO |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
MODULE := congure_test | ||
|
||
include $(RIOTBASE)/Makefile.base |
Oops, something went wrong.