emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
blob 0b13f93ec6298a850933aa55ec031afd86627ac4 2499 bytes (raw)
name: tests/test-gettime-res.c 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
 
/*
 * Copyright 2022 Free Software Foundation, Inc.
 * Written by Paul Eggert.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.  */

#include <config.h>

#include <timespec.h>

#include <stdio.h>

int
main (void)
{
  long int res = gettime_res ();
  printf ("gettime_res returned %ld ns\n", res);

  if (res <= 0)
    {
      fprintf (stderr, "gettime_res value %ld not positive\n", res);
      return 1;
    }

  if (res < TIMESPEC_HZ)
    {
      if (TIMESPEC_HZ % res != 0)
        {
          fprintf (stderr,
                   ("gettime_res value %ld ns is smaller than %d"
                    " but does not divide it\n"),
                   res, TIMESPEC_HZ);
          return 1;
        }
    }
  else
    {
      if (res % TIMESPEC_HZ != 0)
        {
          fprintf (stderr,
                   ("gettime_res value %ld ns is larger than %d"
                    " but is not a multiple of it\n"),
                   res, TIMESPEC_HZ);
          return 1;
        }
    }

  int saw_res = 0;

  for (int i = 0; i < 100000; i++)
    {
      struct timespec t = current_timespec ();
      if (res < TIMESPEC_HZ
          ? t.tv_nsec % res != 0
          : t.tv_nsec != 0 || t.tv_sec % (res / TIMESPEC_HZ) != 0)
        {
          fprintf (stderr,
                   ("current_timespec returned %lld.%09ld which is not"
                    " a multiple of the resolution, %ld ns\n"),
                   (long long) t.tv_sec, t.tv_nsec, res);
          return 1;
        }
      if (res < TIMESPEC_HZ
          ? (t.tv_nsec / res % 2 != 0
             || t.tv_nsec / res % 5 != 0)
          : (t.tv_sec / (res / TIMESPEC_HZ) % 2 != 0
             || t.tv_sec / (res / TIMESPEC_HZ) % 5 != 0))
        saw_res = 1;
    }

  if (saw_res == 0)
    fprintf (stderr,
             ("warning: all timestamps had coarser"
              " resolution than %ld ns\n"),
             res);

  return 0;
}

debug log:

solving 0b13f93ec6 ...
found 0b13f93ec6 in https://list.orgmode.org/orgmode/6efc5d24-34a2-fd30-cd20-fe4ac3e48310@cs.ucla.edu/

applying [1/1] https://list.orgmode.org/orgmode/6efc5d24-34a2-fd30-cd20-fe4ac3e48310@cs.ucla.edu/
diff --git a/tests/test-gettime-res.c b/tests/test-gettime-res.c
new file mode 100644
index 0000000000..0b13f93ec6

Checking patch tests/test-gettime-res.c...
Applied patch tests/test-gettime-res.c cleanly.

index at:
100644 0b13f93ec6298a850933aa55ec031afd86627ac4	tests/test-gettime-res.c

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).