source: mainline/uspace/lib/c/test/perf.c

Last change on this file was 5fbc1f9, checked in by Vojtech Horky <vojtech.horky@…>, 6 years ago

libc: stopwatch API symmetry

  • Property mode set to 100644
File size: 2.8 KB
Line 
1/*
2 * Copyright (c) 2018 Vojtech Horky
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <pcut/pcut.h>
30#include <fibril.h>
31#include <perf.h>
32
33PCUT_INIT;
34
35PCUT_TEST_SUITE(perf);
36
37/* Checks that initialization zeroes out all entries. */
38PCUT_TEST(zero_diff)
39{
40 stopwatch_t sw;
41 stopwatch_init(&sw);
42 PCUT_ASSERT_INT_EQUALS(0, (int) stopwatch_get_nanos(&sw));
43}
44
45/* Checks that initialization zeroes out all entries. */
46PCUT_TEST(zero_diff_static)
47{
48 stopwatch_t sw = STOPWATCH_INITIALIZE_STATIC;
49 PCUT_ASSERT_INT_EQUALS(0, (int) stopwatch_get_nanos(&sw));
50}
51
52/* Checks that measuring 1s sleep does not give completely invalid results. */
53PCUT_TEST(stopwatch_smokes)
54{
55 stopwatch_t sw = STOPWATCH_INITIALIZE_STATIC;
56 stopwatch_start(&sw);
57 fibril_sleep(1);
58 stopwatch_stop(&sw);
59 nsec_t diff_nanos = stopwatch_get_nanos(&sw);
60 PCUT_ASSERT_TRUE(diff_nanos > MSEC2NSEC(500));
61 PCUT_ASSERT_TRUE(diff_nanos < SEC2NSEC(5));
62}
63
64/* Checks that setting time works for small values. */
65PCUT_TEST(stopwatch_emulation_works_small)
66{
67 stopwatch_t sw = STOPWATCH_INITIALIZE_STATIC;
68 stopwatch_set_nanos(&sw, 42);
69 PCUT_ASSERT_INT_EQUALS(42, (int) stopwatch_get_nanos(&sw));
70}
71
72/* Checks that setting time works for big values too. */
73PCUT_TEST(stopwatch_emulation_works_big)
74{
75 stopwatch_t sw = STOPWATCH_INITIALIZE_STATIC;
76 stopwatch_set_nanos(&sw, 4200000000021);
77 PCUT_ASSERT_EQUALS(4200000000021, (long long) stopwatch_get_nanos(&sw));
78}
79
80PCUT_EXPORT(perf);
Note: See TracBrowser for help on using the repository browser.