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:
parent
fc7ef59dee
commit
63b312948a
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue