1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #5246 from OlegHahm/netstats_l2_test

tests: add compile test for netstats_l2
This commit is contained in:
Oleg Hahm 2016-04-05 12:42:36 +02:00
commit 8ed19f5efe
3 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,19 @@
APPLICATION = netstats
include ../Makefile.tests_common
BOARD_PROVIDES_NETIF := airfy-beacon fox iotlab-m3 mulle native nrf51dongle \
nrf6310 pba-d-01-kw2x pca10000 pca10005 saml21-xpro samr21-xpro spark-core \
yunjia-nrf51822
BOARDS ?= $(shell find $(RIOTBASE)/boards/* -maxdepth 0 -type d \! -name "*-common" -exec basename {} \;)
BOARD_BLACKLIST := $(filter-out $(BOARD_PROVIDES_NETIF), $(BOARDS))
USEMODULE += shell
USEMODULE += shell_commands
USEMODULE += gnrc
USEMODULE += gnrc_netdev_default
USEMODULE += auto_init_gnrc_netif
USEMODULE += netstats_l2
include $(RIOTBASE)/Makefile.include

View File

@ -0,0 +1,3 @@
This example is just required to check if the NETSTATS_L2 module builds
correctly. You can use the `ifconfig` command to check the statistics of an
interface.

34
tests/netstats_l2/main.c Normal file
View File

@ -0,0 +1,34 @@
/*
* Copyright (C) 2016 INRIA
*
* 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.
*/
/**
* @ingroup tests
* @{
*
* @file
* @brief Simple application to have a build test for the @ref NETSTATS_L2 pseudomodule
*
* @author Oliver Hahm <oliver.hahm@inria.fr>
*
* @}
*/
#include <stdio.h>
#include "shell.h"
#include "shell_commands.h"
int main(void)
{
(void) puts("Welcome to RIOT!");
char line_buf[SHELL_DEFAULT_BUFSIZE];
shell_run(NULL, line_buf, SHELL_DEFAULT_BUFSIZE);
return 0;
}