]> git.lyx.org Git - features.git/commitdiff
Disable GUI for our batch tests if using QT5
authorKornel Benko <kornel@lyx.org>
Sat, 26 May 2018 11:30:30 +0000 (13:30 +0200)
committerKornel Benko <kornel@lyx.org>
Sat, 26 May 2018 11:30:30 +0000 (13:30 +0200)
Thanks to Enrico for this params

lib/scripts/lyx_batch.pl.in

index 7bd50bef205f99e58a1ccc4de2a875016ddd7b97..7508a13ed980f6b96b7fc4d92ca0d61df02a856f 100644 (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}}));
 }