Skip to content
Snippets Groups Projects
Commit bc03a0d1 authored by Alexandre Abadie's avatar Alexandre Abadie
Browse files

tests/libfixmath_unittests: migrate to testrunner

parent f73fcf4f
No related branches found
No related tags found
No related merge requests found
...@@ -17,3 +17,6 @@ ifneq (,$(filter native qemu-i386,$(BOARD))) ...@@ -17,3 +17,6 @@ ifneq (,$(filter native qemu-i386,$(BOARD)))
endif endif
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
test:
tests/01-run.py
...@@ -40,6 +40,6 @@ int main(void) ...@@ -40,6 +40,6 @@ int main(void)
RUN(fix16_str_unittests); RUN(fix16_str_unittests);
RUN(fix16_unittests); RUN(fix16_unittests);
puts("All tests executed."); puts("SUCCESS");
return 0; return 0;
} }
#!/usr/bin/env python3
# Copyright (C) 2017 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.
import os
import sys
sys.path.append(os.path.join(os.environ['RIOTBASE'], 'dist/tools/testrunner'))
import testrunner
def testfunc(child):
child.expect('SUCCESS')
if __name__ == "__main__":
sys.exit(testrunner.run(testfunc))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment