forked from ROMEO/nexosim
Exclude non-loom test when asynchronix_loom
set
This commit is contained in:
@ -17,6 +17,7 @@ A high performance asychronous compute framework for system simulation.
|
|||||||
"""
|
"""
|
||||||
categories = ["simulation", "aerospace", "science"]
|
categories = ["simulation", "aerospace", "science"]
|
||||||
keywords = ["simulation", "discrete-event", "systems", "cyberphysical", "real-time"]
|
keywords = ["simulation", "discrete-event", "systems", "cyberphysical", "real-time"]
|
||||||
|
autotests = false
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
# API-unstable public exports meant for external test/benchmarking; development only.
|
# API-unstable public exports meant for external test/benchmarking; development only.
|
||||||
@ -44,3 +45,7 @@ waker-fn = "1.1"
|
|||||||
futures-util = "0.3"
|
futures-util = "0.3"
|
||||||
futures-channel = "0.3"
|
futures-channel = "0.3"
|
||||||
futures-executor = "0.3"
|
futures-executor = "0.3"
|
||||||
|
|
||||||
|
[[test]]
|
||||||
|
name = "integration"
|
||||||
|
path = "tests/tests.rs"
|
||||||
|
4
asynchronix/tests/tests.rs
Normal file
4
asynchronix/tests/tests.rs
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#[cfg(not(asynchronix_loom))]
|
||||||
|
mod model_scheduling;
|
||||||
|
#[cfg(not(asynchronix_loom))]
|
||||||
|
mod simulation_scheduling;
|
Reference in New Issue
Block a user