Merge pull request #2602 from szabgab/gui-tests
Select all the GUI tests if no filter was provided
This commit is contained in:
commit
e73d3b7cfa
1 changed files with 1 additions and 1 deletions
|
|
@ -75,7 +75,7 @@ fn main() {
|
||||||
|
|
||||||
let mut no_headless = false;
|
let mut no_headless = false;
|
||||||
let mut filters = Vec::new();
|
let mut filters = Vec::new();
|
||||||
for arg in std::env::args() {
|
for arg in std::env::args().skip(1) {
|
||||||
if arg == "--disable-headless-test" {
|
if arg == "--disable-headless-test" {
|
||||||
no_headless = true;
|
no_headless = true;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue