ci: add fopencookie test
This adds fopencookie test for simulator CI. Signed-off-by: Michal Lenc <michallenc@seznam.cz>
This commit is contained in:
parent
0a107ca6d9
commit
6e4ffb9ea1
|
@ -79,6 +79,7 @@ CONFIG_SYSTEM_DUMPSTACK=y
|
|||
CONFIG_SYSTEM_NSH=y
|
||||
CONFIG_SYSTEM_POPEN=y
|
||||
CONFIG_TESTING_CXXTEST=y
|
||||
CONFIG_TESTING_FOPENCOOKIE_TEST=y
|
||||
CONFIG_TESTING_FSTEST=y
|
||||
CONFIG_TESTING_GETPRIME=y
|
||||
CONFIG_TESTING_MM=y
|
||||
|
|
|
@ -39,6 +39,13 @@ def test_getprime(p):
|
|||
assert ret == 0
|
||||
|
||||
|
||||
def test_fopencookie(p):
|
||||
if p.board in do_not_support:
|
||||
pytest.skip("unsupported at {}".format(p.board))
|
||||
ret = p.sendCommand("fopencookie_test", "fopencokie tests were succesfull.")
|
||||
assert ret == 0
|
||||
|
||||
|
||||
@pytest.mark.run(order=-2)
|
||||
def test_fs_test(p):
|
||||
if p.board in do_not_support:
|
||||
|
|
Loading…
Reference in New Issue