2024-02-14 13:23:28 +01:00
|
|
|
# Copyright (c) 2022-2024 Barcelona Supercomputing Center (BSC)
|
2022-09-19 12:39:02 +02:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2022-08-25 18:56:55 +02:00
|
|
|
|
2024-02-14 13:23:28 +01:00
|
|
|
test_emu(attach.c)
|
2024-03-12 14:24:38 +01:00
|
|
|
test_emu(attach-old.c SHOULD_FAIL
|
|
|
|
REGEX "unsupported nosv model version")
|
2023-03-22 16:01:55 +01:00
|
|
|
test_emu(nested-tasks.c)
|
|
|
|
test_emu(task-types.c MP)
|
|
|
|
test_emu(pause.c MP)
|
2023-10-23 15:12:43 +02:00
|
|
|
test_emu(mp-rank.c MP)
|
|
|
|
test_emu(switch-same-type.c DISABLED) # Does it make sense anymore?
|
2023-04-25 16:51:59 +02:00
|
|
|
test_emu(multiple-segment.c MP NPROC 4)
|
2023-07-27 19:21:19 +02:00
|
|
|
test_emu(task-pause-from-submit.c)
|
2023-11-14 11:52:10 +01:00
|
|
|
test_emu(same-subsystem.c)
|
2023-11-13 10:26:32 +01:00
|
|
|
test_emu(require-missing.c SHOULD_FAIL
|
|
|
|
REGEX "model nosv not enabled for event")
|
2023-12-11 12:56:07 +01:00
|
|
|
test_emu(require-missing.c
|
|
|
|
NAME flag-enable-all
|
|
|
|
DRIVER "flag-enable-all.driver.sh"
|
|
|
|
REGEX "all .* models are enabled")
|
2023-10-23 15:12:43 +02:00
|
|
|
test_emu(parallel-tasks.c)
|
|
|
|
test_emu(nest-to-parallel.c)
|
2024-03-15 17:36:54 +01:00
|
|
|
test_emu(mutex.c)
|
2024-03-15 19:54:37 +01:00
|
|
|
test_emu(barrier.c)
|
2023-10-23 15:12:43 +02:00
|
|
|
|
|
|
|
test_emu(bad-nest-same-task.c SHOULD_FAIL
|
|
|
|
REGEX "body_execute: refusing to run body(id=1,taskid=1) in Paused state, needs to resume intead")
|
|
|
|
test_emu(bad-double-execute.c SHOULD_FAIL
|
|
|
|
REGEX "body_execute: cannot nest body(id=1,taskid=2) over body(id=1,taskid=1) which is already running")
|
|
|
|
test_emu(bad-double-execute-parallel.c SHOULD_FAIL
|
|
|
|
REGEX "body_execute: cannot nest body(id=1,taskid=2) over body(id=1,taskid=1) which is already running")
|
|
|
|
test_emu(bad-pause-parallel.c SHOULD_FAIL
|
|
|
|
REGEX "body_pause: body(id=1,taskid=1) is not allowed to pause")
|
|
|
|
test_emu(bad-nest-from-parallel.c SHOULD_FAIL
|
|
|
|
REGEX "body_execute: cannot nest body(id=2,taskid=2) over body(id=1,taskid=1) which is already running")
|
2024-03-20 15:51:20 +01:00
|
|
|
|
|
|
|
test_emu(events-from-outside-cpu.c SHOULD_FAIL
|
|
|
|
REGEX "current thread .* out of CPU")
|