ovni/test/unit/cfg.c
Rodrigo Arias 74557ab348 Don't rely on temporary directories
Use the current test directory instead.
2023-07-25 16:36:57 +02:00

23 lines
467 B
C

/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
* SPDX-License-Identifier: GPL-3.0-or-later */
#include "emu/pv/cfg.h"
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include "common.h"
int main(void)
{
if (cfg_generate(".") != 0)
die("cfg_generate failed");
/* Check that one configuration file is present */
struct stat st;
if (stat("cfg/cpu/ovni/pid.cfg", &st) != 0)
die("stat failed");
return 0;
}