diff --git a/test/rt/nanos6/external-thread.c b/test/rt/nanos6/external-thread.c deleted file mode 100644 index c4541fa..0000000 --- a/test/rt/nanos6/external-thread.c +++ /dev/null @@ -1,6 +0,0 @@ -/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC) - * SPDX-License-Identifier: GPL-3.0-or-later */ - -/* Create a test which unblocks a task from an external thread. This - * should break currently, as the instrumentation attempts to call - * ovni_ev_emit from a thread without initialization. */ diff --git a/test/unit/CMakeLists.txt b/test/unit/CMakeLists.txt index 2b76225..bab3f52 100644 --- a/test/unit/CMakeLists.txt +++ b/test/unit/CMakeLists.txt @@ -9,7 +9,6 @@ unit_test(clkoff.c) unit_test(cpu.c) unit_test(loom.c) unit_test(mux.c) -unit_test(proc.c) unit_test(prv.c) unit_test(stream.c) unit_test(thread.c) diff --git a/test/unit/proc.c b/test/unit/proc.c deleted file mode 100644 index 27e0dd4..0000000 --- a/test/unit/proc.c +++ /dev/null @@ -1,33 +0,0 @@ -#include "emu/proc.h" -#include "common.h" - -char meta[] = -"{\n" -" \"version\": 1,\n" -" \"model_version\": \"O1 V1 T1 M1 D1 K1 61\",\n" -" \"app_id\": 1,\n" -" \"cpus\": [ 0, 1, 2, 3 ]\n" -//" \"cpus\": [\n" -//" {\n" -//" \"index\": 0,\n" -//" \"phyid\": 0\n" -//" },\n" -//" {\n" -//" \"index\": 1,\n" -//" \"phyid\": 1\n" -//" },\n" -//" {\n" -//" \"index\": 2,\n" -//" \"phyid\": 2\n" -//" },\n" -//" {\n" -//" \"index\": 3,\n" -//" \"phyid\": 3\n" -//" }\n" -//" ]\n" -"}"; - -int main(void) -{ - return 0; -}