[8ee106b] | 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 |
|
---|
| 33 | PCUT_INIT;
|
---|
| 34 |
|
---|
| 35 | PCUT_TEST_SUITE(perf);
|
---|
| 36 |
|
---|
| 37 | /* Checks that initialization zeroes out all entries. */
|
---|
| 38 | PCUT_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. */
|
---|
| 46 | PCUT_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. */
|
---|
| 53 | PCUT_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. */
|
---|
| 65 | PCUT_TEST(stopwatch_emulation_works_small)
|
---|
| 66 | {
|
---|
| 67 | stopwatch_t sw = STOPWATCH_INITIALIZE_STATIC;
|
---|
[5fbc1f9] | 68 | stopwatch_set_nanos(&sw, 42);
|
---|
[8ee106b] | 69 | PCUT_ASSERT_INT_EQUALS(42, (int) stopwatch_get_nanos(&sw));
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | /* Checks that setting time works for big values too. */
|
---|
| 73 | PCUT_TEST(stopwatch_emulation_works_big)
|
---|
| 74 | {
|
---|
| 75 | stopwatch_t sw = STOPWATCH_INITIALIZE_STATIC;
|
---|
[5fbc1f9] | 76 | stopwatch_set_nanos(&sw, 4200000000021);
|
---|
[8ee106b] | 77 | PCUT_ASSERT_EQUALS(4200000000021, (long long) stopwatch_get_nanos(&sw));
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | PCUT_EXPORT(perf);
|
---|