Skip to content
Snippets Groups Projects
Unverified Commit 10ea320b authored by Cenk Gündoğan's avatar Cenk Gündoğan Committed by GitHub
Browse files

Merge pull request #8004 from aabadie/pr/test_pexpect_ssp

tests/ssp: migrate to testrunner
parents 0e3006a3 e4db8495
No related branches found
No related tags found
No related merge requests found
...@@ -12,3 +12,6 @@ USEMODULE += ssp ...@@ -12,3 +12,6 @@ USEMODULE += ssp
CFLAGS += -DDEVELHELP CFLAGS += -DDEVELHELP
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
test:
tests/01-run.py
#!/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_exact('calling stack corruption function')
child.expect('.*stack smashing detected.*')
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