]> sigrok.org Git - libserialport.git/commitdiff
Relax timing test in the other direction.
authorMartin Ling <redacted>
Sat, 25 Jan 2020 14:54:39 +0000 (14:54 +0000)
committerUwe Hermann <redacted>
Sun, 26 Jan 2020 20:21:34 +0000 (21:21 +0100)
On my test system under MSYS (Cygwin64), a period of 991ms was
measured after a sleep of 1s.

test_timing.c

index e3e8ec0ed74e3cf78e57c35c0f6289d53aa441c8..bbca7d61055d9eb99533e2546cb1d3365cbdb69b 100644 (file)
@@ -29,7 +29,7 @@ int main(int argc, char *argv[])
        time_get(&b);
        time_sub(&b, &a, &c);
        printf("Measured: %ums\n", time_as_ms(&c));
-       assert(time_as_ms(&c) >= 999);
+       assert(time_as_ms(&c) >= 950);
        assert(time_as_ms(&c) <= 1050);
        printf("Starting 3s timeout\n");
        timeout_start(&to, 3000);