1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

test: Remove nhdp tests

NHDP module has been deprecated and is being removed.
This commit is contained in:
Leandro Lanzieri 2020-02-18 09:59:47 +01:00
parent 2c0afaa9e2
commit 7cacc594cd
4 changed files with 0 additions and 61 deletions

View File

@ -1,7 +0,0 @@
include ../Makefile.tests_common
USEMODULE += gnrc_ipv6
USEMODULE += gnrc_sock_udp
USEMODULE += nhdp
include $(RIOTBASE)/Makefile.include

View File

@ -1,13 +0,0 @@
BOARD_INSUFFICIENT_MEMORY := \
i-nucleo-lrwan1 \
nucleo-f030r8 \
nucleo-f031k6 \
nucleo-f042k6 \
nucleo-f303k8 \
nucleo-f334r8 \
nucleo-l031k6 \
nucleo-l053r8 \
stm32f030f4-demo \
stm32f0discovery \
stm32l0538-disco \
#

View File

@ -1,23 +0,0 @@
/*
* Copyright (C) 2015 Cenk Gündoğan <cnkgndgn@gmail.com>
*
* 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.
*/
/**
* @file
* @brief Check if the nhdp module builds.
*
* @author Cenk Gündoğan <cnkgndgn@gmail.com>
*
*/
#include <stdio.h>
int main(void)
{
puts("SUCCESS: NHDP compiled!");
return 0;
}

View File

@ -1,18 +0,0 @@
#!/usr/bin/env python3
# Copyright (C) 2016 Kaspar Schleiser <kaspar@schleiser.de>
#
# 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.
import sys
from testrunner import run
def testfunc(child):
child.expect_exact('SUCCESS: NHDP compiled!')
if __name__ == "__main__":
sys.exit(run(testfunc))