From 3533f0c9472b6ce2ed93bd0bb736b741ccd29448 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie <alexandre.abadie@inria.fr> Date: Sat, 11 Nov 2017 15:59:24 +0100 Subject: [PATCH] tests/nhdp: migrate to testrunner --- tests/nhdp/Makefile | 3 +++ tests/nhdp/main.c | 2 +- tests/nhdp/tests/01-run.py | 20 ++++++++++++++++++++ 3 files changed, 24 insertions(+), 1 deletion(-) create mode 100755 tests/nhdp/tests/01-run.py diff --git a/tests/nhdp/Makefile b/tests/nhdp/Makefile index 9f1b70992f..89e25b2241 100644 --- a/tests/nhdp/Makefile +++ b/tests/nhdp/Makefile @@ -12,3 +12,6 @@ USEMODULE += gnrc_sock_udp USEMODULE += nhdp include $(RIOTBASE)/Makefile.include + +test: + tests/01-run.py diff --git a/tests/nhdp/main.c b/tests/nhdp/main.c index ed402de890..7af2a82c3a 100644 --- a/tests/nhdp/main.c +++ b/tests/nhdp/main.c @@ -18,6 +18,6 @@ int main(void) { - puts("NHDP compiled!"); + puts("SUCCESS: NHDP compiled!"); return 0; } diff --git a/tests/nhdp/tests/01-run.py b/tests/nhdp/tests/01-run.py new file mode 100755 index 0000000000..ffbbecfe97 --- /dev/null +++ b/tests/nhdp/tests/01-run.py @@ -0,0 +1,20 @@ +#!/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 os +import sys + +sys.path.append(os.path.join(os.environ['RIOTBASE'], 'dist/tools/testrunner')) +import testrunner + + +def testfunc(child): + child.expect_exact('SUCCESS: NHDP compiled!') + +if __name__ == "__main__": + sys.exit(testrunner.run(testfunc)) -- GitLab