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.
This commit is contained in:
Gabor Szabo 2025-03-20 18:13:59 +02:00
parent fc7ef59dee
commit 63b312948a

View file

@ -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 {