mirror of
https://github.com/italicsjenga/vello.git
synced 2025-01-25 18:56:35 +11:00
bd39d26bce
Have a structured way of gathering test results, rather than the existing ad hoc approach of just printing stuff. The details are still pretty primitive, but there's room to grow.
72 lines
1.8 KiB
Rust
72 lines
1.8 KiB
Rust
// Copyright 2021 The piet-gpu authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
// Also licensed under MIT license, at your choice.
|
|
|
|
//! Test config parameters.
|
|
|
|
use clap::ArgMatches;
|
|
|
|
pub struct Config {
|
|
pub groups: Groups,
|
|
pub size: Size,
|
|
}
|
|
|
|
pub struct Groups(String);
|
|
|
|
pub enum Size {
|
|
Small,
|
|
Medium,
|
|
Large,
|
|
}
|
|
|
|
impl Config {
|
|
pub fn from_matches(matches: &ArgMatches) -> Config {
|
|
let groups = Groups::from_str(matches.value_of("groups").unwrap_or("all"));
|
|
let size = Size::from_str(matches.value_of("size").unwrap_or("m"));
|
|
Config {
|
|
groups, size
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Groups {
|
|
pub fn from_str(s: &str) -> Groups {
|
|
Groups(s.to_string())
|
|
}
|
|
|
|
pub fn matches(&self, group_name: &str) -> bool {
|
|
self.0 == "all" || self.0 == group_name
|
|
}
|
|
}
|
|
|
|
impl Size {
|
|
fn from_str(s: &str) -> Size {
|
|
if s == "small" || s == "s" {
|
|
Size::Small
|
|
} else if s == "large" || s == "l" {
|
|
Size::Large
|
|
} else {
|
|
Size::Medium
|
|
}
|
|
}
|
|
|
|
pub fn choose<T>(&self, small: T, medium: T, large: T) -> T {
|
|
match self {
|
|
Size::Small => small,
|
|
Size::Medium => medium,
|
|
Size::Large => large,
|
|
}
|
|
}
|
|
}
|