diff --git a/tests/libfixmath_unittests/Makefile b/tests/libfixmath_unittests/Makefile
index 64f30947456abc446ff7c5f7c6184ec3521b43e3..49d7663002416cb067b9efc08c2d1b849b04778c 100644
--- a/tests/libfixmath_unittests/Makefile
+++ b/tests/libfixmath_unittests/Makefile
@@ -17,3 +17,6 @@ ifneq (,$(filter native qemu-i386,$(BOARD)))
 endif
 
 include $(RIOTBASE)/Makefile.include
+
+test:
+	tests/01-run.py
diff --git a/tests/libfixmath_unittests/main.c b/tests/libfixmath_unittests/main.c
index c0843f2c496d17bcb35feca983d8b6d4a3fb18d1..d401275d7fceb9c3d9b990c6a44bc6a83c7087c8 100644
--- a/tests/libfixmath_unittests/main.c
+++ b/tests/libfixmath_unittests/main.c
@@ -40,6 +40,6 @@ int main(void)
     RUN(fix16_str_unittests);
     RUN(fix16_unittests);
 
-    puts("All tests executed.");
+    puts("SUCCESS");
     return 0;
 }
diff --git a/tests/libfixmath_unittests/tests/01-run.py b/tests/libfixmath_unittests/tests/01-run.py
new file mode 100755
index 0000000000000000000000000000000000000000..0a1cecc7d233a661148d23ab7369bfb76260b0c4
--- /dev/null
+++ b/tests/libfixmath_unittests/tests/01-run.py
@@ -0,0 +1,20 @@
+#!/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))