1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-21 06:56:06 +02:00
youki/tests/integration_test/src/tests/intel_rdt/mod.rs
Yashodhan 80f1f36ae9
Refactor test dir structure (#2421)
* Move individual rust-oci-tests components in the tests dir

We can use several things from test_framework and even integration_test
for additional tests such as podman rootless and wasm tests

Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>

* fix scripts and docs for the new dir structure

Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>

---------

Signed-off-by: Yashodhan Joshi <yjdoc2@gmail.com>
2023-10-10 21:00:02 +09:00

15 lines
389 B
Rust

use test_framework::{ConditionalTest, TestGroup};
use self::intel_rdt_test::{can_run, test_intel_rdt};
mod intel_rdt_test;
pub fn get_intel_rdt_test() -> TestGroup {
let mut test_group = TestGroup::new("intel_rdt");
let intel_rdt = ConditionalTest::new("intel_rdt", Box::new(can_run), Box::new(test_intel_rdt));
test_group.add(vec![Box::new(intel_rdt)]);
test_group
}