squeekboard-test-layout: add argument parsing and some more output

This commit is contained in:
Mark Müller
2019-12-08 18:29:54 +01:00
parent 8b4c643d3e
commit 34765be22e
2 changed files with 12 additions and 2 deletions

View File

@ -9,6 +9,7 @@ regex = "1.1.*"
serde = { version = "1.0.*", features = ["derive"] }
serde_yaml = "0.8.*"
xkbcommon = { version = "0.4.*", features = ["wayland"] }
clap = "2"
[dependencies.gio]
version = ""

View File

@ -1,8 +1,17 @@
#[macro_use]
extern crate clap;
extern crate rs;
use rs::tests::check_layout_file;
use std::env;
fn main() -> () {
check_layout_file(env::args().nth(1).expect("No argument given").as_str());
let matches = clap_app!(test_layout =>
(name: "squeekboard-test-layout")
(version: env!("CARGO_PKG_VERSION"))
(about: "Test keyboard layout for errors. Returns OK or an error message containing further information.")
(@arg INPUT: +required "Yaml keyboard layout file to test")
).get_matches();
if check_layout_file(matches.value_of("INPUT").unwrap()) == () {
println!("Test result: OK");
}
}