ovni/test/emu/nanos6/ss-mismatch.c

23 lines
466 B
C
Raw Normal View History

2023-02-27 13:40:20 +01:00
/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
2022-09-19 12:39:02 +02:00
* SPDX-License-Identifier: GPL-3.0-or-later */
#include "instr.h"
#include "instr_nanos6.h"
int
main(void)
{
2023-02-24 12:00:27 +01:00
/* Test that a thread ending while the subsystem still has a value in
* the stack causes the emulator to fail */
instr_start(0, 1);
instr_nanos6_init();
2022-09-06 10:38:47 +02:00
instr_nanos6_worker_loop_enter();
/* The thread is left in the worker loop state (should fail) */
instr_end();
return 0;
}