diff --git a/tests/nhdp/Makefile b/tests/nhdp/Makefile deleted file mode 100644 index a81eb7a4f3..0000000000 --- a/tests/nhdp/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../Makefile.tests_common - -USEMODULE += gnrc_ipv6 -USEMODULE += gnrc_sock_udp -USEMODULE += nhdp - -include $(RIOTBASE)/Makefile.include diff --git a/tests/nhdp/Makefile.ci b/tests/nhdp/Makefile.ci deleted file mode 100644 index 7f9b1721db..0000000000 --- a/tests/nhdp/Makefile.ci +++ /dev/null @@ -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 \ - # diff --git a/tests/nhdp/main.c b/tests/nhdp/main.c deleted file mode 100644 index 7af2a82c3a..0000000000 --- a/tests/nhdp/main.c +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (C) 2015 Cenk Gündoğan - * - * 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 - * - */ - -#include - -int main(void) -{ - puts("SUCCESS: NHDP compiled!"); - return 0; -} diff --git a/tests/nhdp/tests/01-run.py b/tests/nhdp/tests/01-run.py deleted file mode 100755 index fa7691f03a..0000000000 --- a/tests/nhdp/tests/01-run.py +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env python3 - -# Copyright (C) 2016 Kaspar Schleiser -# -# 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))