2023-02-27 13:40:20 +01:00
|
|
|
/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
|
|
|
|
2023-01-20 11:55:40 +01:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
|
|
|
|
|
|
|
#include "emu/clkoff.h"
|
|
|
|
#include "common.h"
|
2023-03-21 16:09:01 +01:00
|
|
|
#include "unittest.h"
|
2023-01-20 11:55:40 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
static int
|
|
|
|
test_ok(void)
|
|
|
|
{
|
|
|
|
char table_str[] =
|
|
|
|
"rank hostname offset_median offset_mean offset_std\n"
|
|
|
|
"0 s09r2b21 0 0.000000 0.000000\n"
|
|
|
|
"1 s09r2b22 -451607967 -451608083.500000 316.087397\n"
|
|
|
|
"2 s09r2b23 4526 4542.200000 124.33432\n"
|
|
|
|
"3 s09r2b24 342455 342462.300000 342.39755\n";
|
|
|
|
|
|
|
|
FILE *f = fmemopen(table_str, ARRAYLEN(table_str), "r");
|
|
|
|
|
|
|
|
if (f == NULL)
|
2023-03-21 16:09:01 +01:00
|
|
|
die("fmemopen failed:");
|
2023-01-20 11:55:40 +01:00
|
|
|
|
|
|
|
struct clkoff table;
|
|
|
|
clkoff_init(&table);
|
2023-03-21 16:09:01 +01:00
|
|
|
OK(clkoff_load(&table, f));
|
2023-01-20 11:55:40 +01:00
|
|
|
|
|
|
|
if (clkoff_count(&table) != 4)
|
2023-03-21 16:09:01 +01:00
|
|
|
die("clkoff_count failed");
|
2023-01-20 11:55:40 +01:00
|
|
|
|
|
|
|
struct clkoff_entry *entry = clkoff_get(&table, 3);
|
|
|
|
if (entry == NULL)
|
2023-03-21 16:09:01 +01:00
|
|
|
die("clkoff_get returned NULL");
|
2023-01-20 11:55:40 +01:00
|
|
|
|
|
|
|
if (entry->index != 3)
|
2023-03-21 16:09:01 +01:00
|
|
|
die("clkoff_get returned wrong index");
|
2023-01-20 11:55:40 +01:00
|
|
|
|
|
|
|
fclose(f);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
test_dup(void)
|
|
|
|
{
|
|
|
|
static char table_str[] =
|
|
|
|
"rank hostname offset_median offset_mean offset_std\n"
|
|
|
|
"0 s09r2b21 0 0.000000 0.000000\n"
|
|
|
|
"1 s09r2b22 -451607967 -451608083.500000 316.087397\n"
|
|
|
|
"2 s09r2b23 4526 4542.200000 124.33432\n"
|
|
|
|
"3 s09r2b23 342455 342462.300000 342.39755\n";
|
|
|
|
|
|
|
|
FILE *f = fmemopen(table_str, ARRAYLEN(table_str), "r");
|
|
|
|
|
|
|
|
if (f == NULL)
|
2023-03-21 16:09:01 +01:00
|
|
|
die("fmemopen failed:");
|
2023-01-20 11:55:40 +01:00
|
|
|
|
|
|
|
struct clkoff table;
|
|
|
|
|
|
|
|
clkoff_init(&table);
|
2023-03-21 16:09:01 +01:00
|
|
|
ERR(clkoff_load(&table, f));
|
2023-01-20 11:55:40 +01:00
|
|
|
|
|
|
|
fclose(f);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
test_ok();
|
|
|
|
test_dup();
|
|
|
|
return 0;
|
|
|
|
}
|