sys: tests: rename posix_time to posix_sleep
This commit is contained in:
parent
f46572a308
commit
68a2a5dab0
@ -15,7 +15,7 @@ USEMODULE += auto_init_gnrc_netif
|
|||||||
USEMODULE += gnrc_ipv6_default
|
USEMODULE += gnrc_ipv6_default
|
||||||
USEMODULE += sock_udp
|
USEMODULE += sock_udp
|
||||||
USEMODULE += posix_sockets
|
USEMODULE += posix_sockets
|
||||||
USEMODULE += posix_time
|
USEMODULE += posix_sleep
|
||||||
USEMODULE += posix_inet
|
USEMODULE += posix_inet
|
||||||
# Add also the shell, some shell commands
|
# Add also the shell, some shell commands
|
||||||
USEMODULE += shell
|
USEMODULE += shell
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
USEMODULE += posix_time
|
USEMODULE += posix_sleep
|
||||||
|
|||||||
@ -140,8 +140,8 @@ endif
|
|||||||
ifneq (,$(filter posix_sockets,$(USEMODULE)))
|
ifneq (,$(filter posix_sockets,$(USEMODULE)))
|
||||||
DIRS += posix/sockets
|
DIRS += posix/sockets
|
||||||
endif
|
endif
|
||||||
ifneq (,$(filter posix_time,$(USEMODULE)))
|
ifneq (,$(filter posix_sleep,$(USEMODULE)))
|
||||||
DIRS += posix/time
|
DIRS += posix/sleep
|
||||||
endif
|
endif
|
||||||
ifneq (,$(filter pthread,$(USEMODULE)))
|
ifneq (,$(filter pthread,$(USEMODULE)))
|
||||||
DIRS += posix/pthread
|
DIRS += posix/pthread
|
||||||
|
|||||||
@ -561,7 +561,7 @@ ifneq (,$(filter posix_semaphore,$(USEMODULE)))
|
|||||||
USEMODULE += posix_headers
|
USEMODULE += posix_headers
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter posix_time,$(USEMODULE)))
|
ifneq (,$(filter posix_sleep,$(USEMODULE)))
|
||||||
USEMODULE += xtimer
|
USEMODULE += xtimer
|
||||||
USEMODULE += posix_headers
|
USEMODULE += posix_headers
|
||||||
endif
|
endif
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
MODULE = posix_time
|
MODULE = posix_sleep
|
||||||
|
|
||||||
include $(RIOTBASE)/Makefile.base
|
include $(RIOTBASE)/Makefile.base
|
||||||
@ -7,7 +7,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ingroup sys_xtimer
|
* @ingroup posix
|
||||||
*
|
*
|
||||||
* @{
|
* @{
|
||||||
* @file
|
* @file
|
||||||
@ -1,5 +1,5 @@
|
|||||||
include ../Makefile.tests_common
|
include ../Makefile.tests_common
|
||||||
|
|
||||||
USEMODULE += posix_time
|
USEMODULE += posix_sleep
|
||||||
|
|
||||||
include $(RIOTBASE)/Makefile.include
|
include $(RIOTBASE)/Makefile.include
|
||||||
@ -1,4 +1,4 @@
|
|||||||
# posix_time test application
|
# posix_sleep test application
|
||||||
|
|
||||||
This test tests POSIX' `sleep()` and `usleep()`.
|
This test tests POSIX' `sleep()` and `usleep()`.
|
||||||
The test script also checks the sanity of the timings by comparing the overall
|
The test script also checks the sanity of the timings by comparing the overall
|
||||||
Loading…
x
Reference in New Issue
Block a user