mirror of
https://github.com/italicsjenga/vello.git
synced 2025-01-10 12:41:30 +11:00
update tests
This commit is contained in:
parent
14247770aa
commit
73833eb7c3
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -948,7 +948,7 @@ name = "piet-gpu-tests"
|
|||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"bytemuck",
|
||||
"clap 2.34.0",
|
||||
"clap 3.2.22",
|
||||
"kurbo 0.7.1",
|
||||
"piet-gpu",
|
||||
"piet-gpu-hal",
|
||||
|
|
|
@ -10,7 +10,7 @@ edition = "2021"
|
|||
default = ["piet-gpu"]
|
||||
|
||||
[dependencies]
|
||||
clap = "2.33"
|
||||
clap = "3.2.22"
|
||||
bytemuck = "1.7.2"
|
||||
kurbo = "0.7.1"
|
||||
rand = "0.7.3"
|
||||
|
|
|
@ -42,27 +42,27 @@ fn main() {
|
|||
let matches = App::new("piet-gpu-tests")
|
||||
.arg(
|
||||
Arg::with_name("verbose")
|
||||
.short("v")
|
||||
.short('v')
|
||||
.long("verbose")
|
||||
.help("Verbose reporting of results"),
|
||||
)
|
||||
.arg(
|
||||
Arg::with_name("groups")
|
||||
.short("g")
|
||||
.short('g')
|
||||
.long("groups")
|
||||
.help("Groups to run")
|
||||
.takes_value(true),
|
||||
)
|
||||
.arg(
|
||||
Arg::with_name("size")
|
||||
.short("s")
|
||||
.short('s')
|
||||
.long("size")
|
||||
.help("Size of tests")
|
||||
.takes_value(true),
|
||||
)
|
||||
.arg(
|
||||
Arg::with_name("n_iter")
|
||||
.short("n")
|
||||
.short('n')
|
||||
.long("n_iter")
|
||||
.help("Number of iterations")
|
||||
.takes_value(true),
|
||||
|
|
Loading…
Reference in a new issue