mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-24 22:13:52 +01:00
Merge pull request #8879 from kaspar030/enable_some_on_hardware_tests
tests: enable ps_schedstatistics and struct_tm_utility on-hardware CI tests
This commit is contained in:
commit
0575dbfad7
@ -11,6 +11,8 @@ USEMODULE += ps
|
||||
USEMODULE += schedstatistics
|
||||
USEMODULE += printf_float
|
||||
|
||||
TEST_ON_CI_WHITELIST += all
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
||||
test:
|
||||
|
||||
@ -39,6 +39,8 @@ def _check_startup(child):
|
||||
|
||||
|
||||
def _check_help(child):
|
||||
child.sendline('')
|
||||
child.expect('>')
|
||||
child.sendline('help')
|
||||
child.expect_exact('Command Description')
|
||||
child.expect_exact('---------------------------------------')
|
||||
|
||||
@ -8,6 +8,8 @@ USEMODULE += timex
|
||||
# The MSP-430 toolchain lacks sscanf:
|
||||
BOARD_BLACKLIST := chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1
|
||||
|
||||
TEST_ON_CI_WHITELIST += all
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
||||
test:
|
||||
|
||||
@ -105,7 +105,13 @@ def _check_day(child):
|
||||
'but no error should occur.')
|
||||
|
||||
|
||||
def _wait_prompt(child):
|
||||
child.sendline('')
|
||||
child.expect('>')
|
||||
|
||||
|
||||
def testfunc(child):
|
||||
_wait_prompt(child)
|
||||
_check_help(child)
|
||||
_check_days_in(child)
|
||||
_check_leap_year(child)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user