1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-30 00:00:11 +01:00
VILLASnode/tests/unit/rdtsc.c

66 lines
1.8 KiB
C

/** Unit tests for rdtsc
*
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
* @copyright 2018, Institute for Automation of Complex Power Systems, EONERC
* @license GNU General Public License (version 3)
*
* VILLASnode
*
* 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
* 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 <http://www.gnu.org/licenses/>.
*********************************************************************************/
#include <criterion/criterion.h>
#include <villas/utils.h>
#include <villas/rdtsc.h>
#include <villas/timing.h>
Test(rdtsc, increasing)
{
uint64_t *cntrs;
cntrs = alloc(sizeof(uint64_t) << 18);
cr_assert_not_null(cntrs);
for (int i = 0; i < ARRAY_LEN(cntrs); i++)
cntrs[i] = rdtscp();
for (int i = 1; i < ARRAY_LEN(cntrs); i++)
cr_assert_lt(cntrs[i-1], cntrs[i]);
free(cntrs);
}
Test(rdtsc, sleep)
{
int ret;
double delta, duration = 1;
struct timespec start, stop;
uint64_t freq, start_cycles, end_cycles;
ret = rdtsc_init(&freq);
cr_assert_eq(ret, 0);
clock_gettime(CLOCK_MONOTONIC, &start);
start_cycles = rdtscp();
end_cycles = start_cycles + duration * freq;
while (rdtscp() < end_cycles);
clock_gettime(CLOCK_MONOTONIC, &stop);
delta = time_delta(&start, &stop);
cr_assert_float_eq(delta, duration, 1e-3, "Error: %f, Delta: %lf, Freq: %llu", delta - duration, delta, freq);
}