From 63b312948a7cffa46e1f12cb782049076337edc2 Mon Sep 17 00:00:00 2001 From: Gabor Szabo Date: Thu, 20 Mar 2025 18:13:59 +0200 Subject: [PATCH] Select all the GUI tests if no filter was provided The name of excutable was taken as a filter and because of that nothing was selected by default. --- tests/gui/runner.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gui/runner.rs b/tests/gui/runner.rs index 2f9d5eb1..69740753 100644 --- a/tests/gui/runner.rs +++ b/tests/gui/runner.rs @@ -75,7 +75,7 @@ fn main() { let mut no_headless = false; let mut filters = Vec::new(); - for arg in std::env::args() { + for arg in std::env::args().skip(1) { if arg == "--disable-headless-test" { no_headless = true; } else {