tests: cpp11_thread: vtimer to xtimer
This commit is contained in:
parent
751507a961
commit
bc12c7a69a
@ -28,7 +28,7 @@ QUIET ?= 1
|
|||||||
CXXEXFLAGS += -std=c++11
|
CXXEXFLAGS += -std=c++11
|
||||||
|
|
||||||
USEMODULE += cpp11-compat
|
USEMODULE += cpp11-compat
|
||||||
USEMODULE += vtimer
|
USEMODULE += xtimer
|
||||||
USEMODULE += timex
|
USEMODULE += timex
|
||||||
|
|
||||||
include $(RIOTBASE)/Makefile.include
|
include $(RIOTBASE)/Makefile.include
|
||||||
|
|||||||
@ -122,9 +122,9 @@ int main() {
|
|||||||
puts("Testing sleep_for ...");
|
puts("Testing sleep_for ...");
|
||||||
{
|
{
|
||||||
timex_t before, after;
|
timex_t before, after;
|
||||||
vtimer_now(&before);
|
xtimer_now_timex(&before);
|
||||||
this_thread::sleep_for(chrono::seconds(1));
|
this_thread::sleep_for(chrono::seconds(1));
|
||||||
vtimer_now(&after);
|
xtimer_now_timex(&after);
|
||||||
auto diff = timex_sub(after, before);
|
auto diff = timex_sub(after, before);
|
||||||
assert(diff.seconds >= 1);
|
assert(diff.seconds >= 1);
|
||||||
}
|
}
|
||||||
@ -135,9 +135,9 @@ int main() {
|
|||||||
puts("Testing sleep_until ...");
|
puts("Testing sleep_until ...");
|
||||||
{
|
{
|
||||||
timex_t before, after;
|
timex_t before, after;
|
||||||
vtimer_now(&before);
|
xtimer_now_timex(&before);
|
||||||
this_thread::sleep_until(riot::now() += chrono::seconds(1));
|
this_thread::sleep_until(riot::now() += chrono::seconds(1));
|
||||||
vtimer_now(&after);
|
xtimer_now_timex(&after);
|
||||||
auto diff = timex_sub(after, before);
|
auto diff = timex_sub(after, before);
|
||||||
assert(diff.seconds >= 1);
|
assert(diff.seconds >= 1);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user