asupersync-conformance 0.3.3

Conformance test suite for async runtime specifications
1
2
3
4
5
6
7
8
9
//! Default benchmark definitions.

use crate::RuntimeInterface;
use crate::bench::Benchmark;

/// Default benchmark set for conformance runtime comparisons.
pub fn default_benchmarks<R: RuntimeInterface>() -> Vec<Benchmark<R>> {
    vec![]
}