vyre-conform 0.1.0

Conformance suite for vyre backends — proves byte-identical output to CPU reference
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::{Deserialize, Serialize};

/// A target runtime or backend implementation to test.
#[derive(Debug, Deserialize, Serialize, Clone, PartialEq, Eq)]
#[serde(deny_unknown_fields)]
pub struct DefendantEntry {
    /// Name of the defendant runtime.
    pub name: String,
    /// URL to the source or package.
    pub source_url: String,
    /// Expected version string.
    pub version: String,
    /// Whether this defendant is expected to pass or fail specific rules.
    pub expected_outcome: String,
}