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 */
|
2022-08-23 16:40:44 +02:00
|
|
|
|
2023-03-22 16:01:55 +01:00
|
|
|
#include "instr.h"
|
2022-08-23 16:40:44 +02:00
|
|
|
#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 */
|
|
|
|
|
2022-08-25 18:56:55 +02:00
|
|
|
instr_start(0, 1);
|
2023-11-10 12:34:57 +01:00
|
|
|
instr_nanos6_init();
|
2022-08-23 16:40:44 +02:00
|
|
|
|
2022-09-06 10:38:47 +02:00
|
|
|
instr_nanos6_worker_loop_enter();
|
|
|
|
/* The thread is left in the worker loop state (should fail) */
|
2022-08-23 16:40:44 +02:00
|
|
|
|
|
|
|
instr_end();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|