Remove building with NOCRYPTO option
[minix.git] / tests / lib / libc / sys / t_getrusage.c
blob6c4218a6bdf1aef29e0acf427be8c25cdf8fae34
1 /* $NetBSD: t_getrusage.c,v 1.3 2014/09/03 19:24:12 matt Exp $ */
3 /*-
4 * Copyright (c) 2011 The NetBSD Foundation, Inc.
5 * All rights reserved.
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jukka Ruohonen.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
31 #include <sys/cdefs.h>
32 __RCSID("$NetBSD: t_getrusage.c,v 1.3 2014/09/03 19:24:12 matt Exp $");
34 #include <sys/resource.h>
35 #include <sys/time.h>
37 #include <atf-c.h>
38 #include <errno.h>
39 #include <limits.h>
40 #include <signal.h>
41 #include <stdint.h>
42 #include <string.h>
44 static void work(void);
45 static void sighandler(int);
47 static const size_t maxiter = 2000;
49 static void
50 sighandler(int signo)
52 /* Nothing. */
55 static void
56 work(void)
58 size_t n = UINT16_MAX * 10;
60 while (n > 0) {
61 #ifdef __or1k__
62 asm volatile("l.nop"); /* Do something. */
63 #else
64 asm volatile("nop"); /* Do something. */
65 #endif
66 n--;
70 ATF_TC(getrusage_err);
71 ATF_TC_HEAD(getrusage_err, tc)
73 atf_tc_set_md_var(tc, "descr", "Test error conditions");
76 ATF_TC_BODY(getrusage_err, tc)
78 struct rusage ru;
80 errno = 0;
82 ATF_REQUIRE(getrusage(INT_MAX, &ru) != 0);
83 ATF_REQUIRE(errno == EINVAL);
85 errno = 0;
87 ATF_REQUIRE(getrusage(RUSAGE_SELF, (void *)0) != 0);
88 ATF_REQUIRE(errno == EFAULT);
91 ATF_TC(getrusage_sig);
92 ATF_TC_HEAD(getrusage_sig, tc)
94 atf_tc_set_md_var(tc, "descr", "Test signal count with getrusage(2)");
97 ATF_TC_BODY(getrusage_sig, tc)
99 struct rusage ru;
100 const long n = 5;
101 int i;
104 * Test that signals are recorded.
106 ATF_REQUIRE(signal(SIGUSR1, sighandler) != SIG_ERR);
108 for (i = 0; i < n; i++)
109 ATF_REQUIRE(raise(SIGUSR1) == 0);
111 (void)memset(&ru, 0, sizeof(struct rusage));
112 ATF_REQUIRE(getrusage(RUSAGE_SELF, &ru) == 0);
114 if (n != ru.ru_nsignals)
115 atf_tc_fail("getrusage(2) did not record signals");
118 ATF_TC(getrusage_utime_back);
119 ATF_TC_HEAD(getrusage_utime_back, tc)
121 atf_tc_set_md_var(tc, "descr", "Test bogus values from getrusage(2)");
124 ATF_TC_BODY(getrusage_utime_back, tc)
126 struct rusage ru1, ru2;
127 size_t i;
130 * Test that two consecutive calls are sane.
132 atf_tc_expect_fail("PR kern/30115");
134 for (i = 0; i < maxiter; i++) {
136 (void)memset(&ru1, 0, sizeof(struct rusage));
137 (void)memset(&ru2, 0, sizeof(struct rusage));
139 work();
141 ATF_REQUIRE(getrusage(RUSAGE_SELF, &ru1) == 0);
143 work();
145 ATF_REQUIRE(getrusage(RUSAGE_SELF, &ru2) == 0);
147 if (timercmp(&ru2.ru_utime, &ru1.ru_utime, <) != 0)
148 atf_tc_fail("user time went backwards");
151 atf_tc_fail("anticipated error did not occur");
154 ATF_TC(getrusage_utime_zero);
155 ATF_TC_HEAD(getrusage_utime_zero, tc)
157 atf_tc_set_md_var(tc, "descr", "Test zero utime from getrusage(2)");
160 ATF_TC_BODY(getrusage_utime_zero, tc)
162 struct rusage ru;
163 size_t i;
166 * Test that getrusage(2) does not return
167 * zero user time for the calling process.
169 * See also (duplicate) PR port-amd64/41734.
171 atf_tc_expect_fail("PR kern/30115");
173 for (i = 0; i < maxiter; i++) {
175 work();
177 (void)memset(&ru, 0, sizeof(struct rusage));
179 ATF_REQUIRE(getrusage(RUSAGE_SELF, &ru) == 0);
181 if (ru.ru_utime.tv_sec == 0 && ru.ru_utime.tv_usec == 0)
182 atf_tc_fail("zero user time from getrusage(2)");
185 atf_tc_fail("anticipated error did not occur");
188 ATF_TP_ADD_TCS(tp)
191 ATF_TP_ADD_TC(tp, getrusage_err);
192 ATF_TP_ADD_TC(tp, getrusage_sig);
193 ATF_TP_ADD_TC(tp, getrusage_utime_back);
194 ATF_TP_ADD_TC(tp, getrusage_utime_zero);
196 return atf_no_error();