1
0
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:
Kaspar Schleiser 2018-04-09 17:14:46 +02:00 committed by GitHub
commit 0575dbfad7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 0 deletions

View File

@ -11,6 +11,8 @@ USEMODULE += ps
USEMODULE += schedstatistics
USEMODULE += printf_float
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include
test:

View File

@ -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('---------------------------------------')

View File

@ -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:

View File

@ -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)