ovni/test/emu/nosv/cannot-breakdown.c
Rodrigo Arias 1dcb3f4822 Check ovniemu -b works without can_breakdown set
Ensure that we can successfully process a trace that has nOS-V threads
without the can_breakdown flag set to true. We simply don't enable the
nOS-V breakdown, but other models can enable it.
2025-04-23 15:32:52 +02:00

27 lines
629 B
C

/* Copyright (c) 2025 Barcelona Supercomputing Center (BSC)
* SPDX-License-Identifier: GPL-3.0-or-later */
#include <ovni.h>
#include "instr_nosv.h"
/* Test that we can request the -b flag but still have threads that don't have
* the nosv.can_breakdown attribute set to true. OpenMP may enable the breakdown
* on its own. */
int
main(void)
{
instr_start(0, 1);
/* Don't enable nosv model via instr_nosv_init() as that would set the
* nosv.can_breakdown to 1 */
instr_require("nosv");
ovni_attr_set_boolean("nosv.can_breakdown", 0);
/* Emit a nosv event */
instr_nosv_type_create(666);
instr_end();
return 0;
}