truncate: Work around trailing slash bug in truncate() on AIX 7.2.
[gnulib.git] / tests / test-getrusage.c
blob174167d85fda03b5a71a3e64b413d0ca450c6c72
1 /* Test of getting resource utilization.
2 Copyright (C) 2012-2021 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2012. */
19 #include <config.h>
21 #include <sys/resource.h>
23 #include "signature.h"
24 SIGNATURE_CHECK (getrusage, int, (int, struct rusage *));
26 #include <sys/time.h>
28 #include "macros.h"
30 volatile unsigned int counter;
32 int
33 main (void)
35 struct rusage before;
36 struct rusage after;
37 int ret;
39 ret = getrusage (RUSAGE_SELF, &before);
40 ASSERT (ret == 0);
42 /* Busy-loop for one second. */
44 struct timeval t0;
45 ASSERT (gettimeofday (&t0, NULL) == 0);
47 for (;;)
49 struct timeval t;
50 int i;
52 for (i = 0; i < 1000000; i++)
53 counter++;
55 ASSERT (gettimeofday (&t, NULL) == 0);
56 if (t.tv_sec - t0.tv_sec > 1
57 || (t.tv_sec - t0.tv_sec == 1 && t.tv_usec >= t0.tv_usec))
58 break;
62 ret = getrusage (RUSAGE_SELF, &after);
63 ASSERT (ret == 0);
65 ASSERT (after.ru_utime.tv_sec >= before.ru_utime.tv_sec);
66 ASSERT (after.ru_stime.tv_sec >= before.ru_stime.tv_sec);
68 /* Compute time spent during busy-looping (in usec). */
69 unsigned int spent_utime =
70 (after.ru_utime.tv_sec > before.ru_utime.tv_sec
71 ? (after.ru_utime.tv_sec - before.ru_utime.tv_sec - 1) * 1000000U
72 + after.ru_utime.tv_usec + (1000000U - before.ru_utime.tv_usec)
73 : after.ru_utime.tv_usec - before.ru_utime.tv_usec);
74 unsigned int spent_stime =
75 (after.ru_stime.tv_sec > before.ru_stime.tv_sec
76 ? (after.ru_stime.tv_sec - before.ru_stime.tv_sec - 1) * 1000000U
77 + after.ru_stime.tv_usec + (1000000U - before.ru_stime.tv_usec)
78 : after.ru_stime.tv_usec - before.ru_stime.tv_usec);
80 ASSERT (spent_utime + spent_stime <= 2 * 1000000U);
81 /* Assume that the load during this busy-looping was less than 100. */
82 ASSERT (spent_utime + spent_stime > 10000U);
85 return 0;