gul-cpp / gul14

General Utility Library for C++14
https://gul14.info/
GNU Lesser General Public License v2.1
2 stars 1 forks source link

time_util: Make time-dependent tests more robust #76

Closed alt-graph closed 7 months ago

alt-graph commented 8 months ago

[why]

One of the tests tries to ascertain that sleep(0) or sleep(-5s) does not wait. Strictly speaking, that is impossible to test because the program execution may be interrupted at any time.

[how]

Increase the allowed time duration from 1 ms to 100 ms and cross fingers. The only other option I see is to remove the test for good. I'd also be fine with that.

Closes #75