1 2 3 4 5 6 7 8 9 10 11 12
// SPDX-License-Identifier: GPL-3.0-only #![cfg(feature = "runtime")] //! Runtime integration tests — execute generated code against oxivgl on host. #[path = "runtime/common.rs"] mod common; #[path = "runtime/test_core_arc.rs"] mod test_core_arc; #[path = "runtime/test_core_label.rs"] mod test_core_label; #[path = "runtime/test_core_obj.rs"] mod test_core_obj;