1
0
Fork 0
forked from wry/wry

seat: update xkb_state when keymap changes

This commit is contained in:
Julian Orth 2022-05-04 22:10:38 +02:00
parent a80c5690c8
commit 76c47c24d0
7 changed files with 123 additions and 5 deletions

View file

@ -19,7 +19,7 @@ macro_rules! testcase {
fn run(
&self,
testrun: std::rc::Rc<crate::it::testrun::TestRun>,
) -> Box<dyn std::future::Future<Output = Result<(), TestError>>> {
) -> Box<dyn std::future::Future<Output = crate::it::test_error::TestResult>> {
Box::new(test(testrun))
}
}
@ -36,6 +36,7 @@ mod t0007_subsurface;
mod t0008_map_focus;
mod t0009_tab_focus;
mod t0010_fullscreen_focus;
mod t0011_set_keymap;
pub trait TestCase: Sync {
fn name(&self) -> &'static str;
@ -64,5 +65,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
t0008_map_focus,
t0009_tab_focus,
t0010_fullscreen_focus,
t0011_set_keymap,
}
}