Skip to content
Snippets Groups Projects
Unverified Commit 0575dbfa authored by Kaspar Schleiser's avatar Kaspar Schleiser Committed by GitHub
Browse files

Merge pull request #8879 from kaspar030/enable_some_on_hardware_tests

tests: enable ps_schedstatistics and struct_tm_utility on-hardware CI tests
parents 3fea1eaa 1ecaa8df
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,8 @@ USEMODULE += ps ...@@ -11,6 +11,8 @@ USEMODULE += ps
USEMODULE += schedstatistics USEMODULE += schedstatistics
USEMODULE += printf_float USEMODULE += printf_float
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
test: test:
......
...@@ -39,6 +39,8 @@ def _check_startup(child): ...@@ -39,6 +39,8 @@ def _check_startup(child):
def _check_help(child): def _check_help(child):
child.sendline('')
child.expect('>')
child.sendline('help') child.sendline('help')
child.expect_exact('Command Description') child.expect_exact('Command Description')
child.expect_exact('---------------------------------------') child.expect_exact('---------------------------------------')
......
...@@ -8,6 +8,8 @@ USEMODULE += timex ...@@ -8,6 +8,8 @@ USEMODULE += timex
# The MSP-430 toolchain lacks sscanf: # The MSP-430 toolchain lacks sscanf:
BOARD_BLACKLIST := chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1 BOARD_BLACKLIST := chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
test: test:
......
...@@ -105,7 +105,13 @@ def _check_day(child): ...@@ -105,7 +105,13 @@ def _check_day(child):
'but no error should occur.') 'but no error should occur.')
def _wait_prompt(child):
child.sendline('')
child.expect('>')
def testfunc(child): def testfunc(child):
_wait_prompt(child)
_check_help(child) _check_help(child)
_check_days_in(child) _check_days_in(child)
_check_leap_year(child) _check_leap_year(child)
......
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