aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-03-10 14:19:58 -0500
committerDavid Robillard <d@drobilla.net>2021-03-10 14:19:58 -0500
commit9939cb9bf04d9997c1cf5d87bf6260ab21d25272 (patch)
tree84d876486a9bd0bbc94dfe94b165ec26d8078368
parent1ff4f7414efdf311d85c56d76887b9fd32628014 (diff)
downloadpugl-9939cb9bf04d9997c1cf5d87bf6260ab21d25272.tar.gz
pugl-9939cb9bf04d9997c1cf5d87bf6260ab21d25272.tar.bz2
pugl-9939cb9bf04d9997c1cf5d87bf6260ab21d25272.zip
Relax precision requirement of timer test
-rw-r--r--test/test_timer.c2
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