Skip to content

Commit 63b3129

Browse files
committed
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.
1 parent fc7ef59 commit 63b3129

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/gui/runner.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ fn main() {
7575

7676
let mut no_headless = false;
7777
let mut filters = Vec::new();
78-
for arg in std::env::args() {
78+
for arg in std::env::args().skip(1) {
7979
if arg == "--disable-headless-test" {
8080
no_headless = true;
8181
} else {

0 commit comments

Comments
 (0)