Disable GUI for our batch tests if using QT5

Thanks to Enrico for this params
This commit is contained in:
Kornel Benko 2018-05-26 13:30:30 +02:00
parent 49603e91aa
commit f5732bef83

View File

@ -19,6 +19,7 @@ my $workdir = "$builddir/autotests/out-home";
my $vsuffix = "@PROGRAM_SUFFIX@";
my $lyx_exe = "$builddir/bin/lyx$vsuffix";
my $git_exe = "@LYX_GITVERSION@";
my $qt_version = "@LYX_USE_QT@";
my $lyxsource = "@LYX_ABS_TOP_SRCDIR@";
my $data = "$lyxsource/development/batchtests";
@ -94,6 +95,9 @@ if (defined($Tests{$test}->{command_line})) {
push(@command, @{$Tests{$test}->{command_line}});
}
if (defined($Tests{$test}->{commands})) {
if ($qt_version eq "QT5") {
push(@command, "-platform", "offscreen");
}
push(@command, "-x", "command-sequence " . join(';', @{$Tests{$test}->{commands}}));
}