diff options
author | David Robillard <d@drobilla.net> | 2021-03-10 14:19:58 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-03-10 14:19:58 -0500 |
commit | 9939cb9bf04d9997c1cf5d87bf6260ab21d25272 (patch) | |
tree | 84d876486a9bd0bbc94dfe94b165ec26d8078368 /test | |
parent | 1ff4f7414efdf311d85c56d76887b9fd32628014 (diff) | |
download | pugl-9939cb9bf04d9997c1cf5d87bf6260ab21d25272.tar.gz pugl-9939cb9bf04d9997c1cf5d87bf6260ab21d25272.tar.bz2 pugl-9939cb9bf04d9997c1cf5d87bf6260ab21d25272.zip |
Relax precision requirement of timer test
Diffstat (limited to 'test')
-rw-r--r-- | test/test_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_timer.c b/test/test_timer.c index 18518ec..200ddc2 100644 --- a/test/test_timer.c +++ b/test/test_timer.c @@ -41,7 +41,7 @@ static const double timeout = -1.0; #ifdef _WIN32 // Windows SetTimer has a maximum resolution of 10ms -static const double tolerance = 0.011; +static const double tolerance = 0.012; #else static const double tolerance = 0.002; #endif |