sys: tests: rename posix_time to posix_sleep

This commit is contained in:
Alexandre Abadie 2020-10-26 11:54:42 +01:00
parent f46572a308
commit 68a2a5dab0
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
10 changed files with 9 additions and 9 deletions

View File

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

View File

@ -1 +1 @@
USEMODULE += posix_time USEMODULE += posix_sleep

View File

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

View File

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

View File

@ -1,3 +1,3 @@
MODULE = posix_time MODULE = posix_sleep
include $(RIOTBASE)/Makefile.base include $(RIOTBASE)/Makefile.base

View File

@ -7,7 +7,7 @@
*/ */
/** /**
* @ingroup sys_xtimer * @ingroup posix
* *
* @{ * @{
* @file * @file

View 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

View File

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