2010-11-13 17:29:20 +01:00
|
|
|
|
#!/usr/bin/env perl
|
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
2011-07-25 15:37:13 +02:00
|
|
|
|
# © 2010-2011 Michael Stapelberg and contributors
|
2010-11-13 17:29:20 +01:00
|
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
|
use warnings;
|
|
|
|
|
use v5.10;
|
2011-10-04 21:10:11 +02:00
|
|
|
|
# the following are modules which ship with Perl (>= 5.10):
|
2011-11-07 22:21:51 +01:00
|
|
|
|
use Pod::Usage;
|
2011-04-26 19:20:29 +02:00
|
|
|
|
use Cwd qw(abs_path);
|
2011-10-04 21:10:11 +02:00
|
|
|
|
use File::Basename qw(basename);
|
|
|
|
|
use File::Temp qw(tempfile tempdir);
|
|
|
|
|
use Getopt::Long;
|
|
|
|
|
use IO::Socket::UNIX;
|
|
|
|
|
use POSIX;
|
|
|
|
|
use Time::HiRes qw(sleep gettimeofday tv_interval);
|
2010-11-13 17:29:20 +01:00
|
|
|
|
use TAP::Harness;
|
2011-07-25 15:37:13 +02:00
|
|
|
|
use TAP::Parser;
|
2010-11-13 17:29:20 +01:00
|
|
|
|
use TAP::Parser::Aggregator;
|
2011-10-04 21:55:29 +02:00
|
|
|
|
# these are shipped with the testsuite
|
|
|
|
|
use lib qw(lib);
|
|
|
|
|
use SocketActivation;
|
2011-11-08 00:04:45 +01:00
|
|
|
|
use StartXDummy;
|
2011-11-09 22:21:10 +01:00
|
|
|
|
use StatusLine;
|
2011-10-04 21:10:11 +02:00
|
|
|
|
# the following modules are not shipped with Perl
|
|
|
|
|
use AnyEvent;
|
|
|
|
|
use AnyEvent::Handle;
|
2011-05-08 20:08:35 +02:00
|
|
|
|
use AnyEvent::I3 qw(:all);
|
2011-09-24 14:09:20 +02:00
|
|
|
|
use X11::XCB;
|
2011-08-10 15:56:39 +02:00
|
|
|
|
|
2011-10-06 00:52:19 +02:00
|
|
|
|
# We actually use AnyEvent to make sure it loads an event loop implementation.
|
|
|
|
|
# Afterwards, we overwrite SIGCHLD:
|
|
|
|
|
my $cv = AnyEvent->condvar;
|
|
|
|
|
|
|
|
|
|
# Install a dummy CHLD handler to overwrite the CHLD handler of AnyEvent.
|
2011-10-06 00:29:58 +02:00
|
|
|
|
# AnyEvent’s handler wait()s for every child which conflicts with TAP (TAP
|
|
|
|
|
# needs to get the exit status to determine if a test is successful).
|
2011-07-25 15:37:13 +02:00
|
|
|
|
$SIG{CHLD} = sub {
|
|
|
|
|
};
|
2010-11-13 17:29:20 +01:00
|
|
|
|
|
2011-04-26 19:20:29 +02:00
|
|
|
|
# reads in a whole file
|
|
|
|
|
sub slurp {
|
2011-11-08 00:04:45 +01:00
|
|
|
|
open(my $fh, '<', shift);
|
2011-04-26 19:20:29 +02:00
|
|
|
|
local $/;
|
|
|
|
|
<$fh>;
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-09 22:21:10 +01:00
|
|
|
|
# convinience wrapper to write to the log file
|
|
|
|
|
my $log;
|
|
|
|
|
sub Log { say $log "@_" }
|
|
|
|
|
|
2011-05-08 20:08:35 +02:00
|
|
|
|
my $coverage_testing = 0;
|
2011-11-07 21:53:49 +01:00
|
|
|
|
my $valgrind = 0;
|
2011-11-07 22:21:51 +01:00
|
|
|
|
my $help = 0;
|
2011-11-08 00:04:45 +01:00
|
|
|
|
# Number of tests to run in parallel. Important to know how many Xdummy
|
|
|
|
|
# instances we need to start (unless @displays are given). Defaults to
|
|
|
|
|
# num_cores * 2.
|
|
|
|
|
my $parallel = undef;
|
2011-07-25 15:37:13 +02:00
|
|
|
|
my @displays = ();
|
2011-11-08 00:04:45 +01:00
|
|
|
|
my @childpids = ();
|
2011-05-08 20:08:35 +02:00
|
|
|
|
|
|
|
|
|
my $result = GetOptions(
|
2011-07-25 15:37:13 +02:00
|
|
|
|
"coverage-testing" => \$coverage_testing,
|
2011-11-07 21:53:49 +01:00
|
|
|
|
"valgrind" => \$valgrind,
|
2011-07-25 15:37:13 +02:00
|
|
|
|
"display=s" => \@displays,
|
2011-11-08 00:04:45 +01:00
|
|
|
|
"parallel=i" => \$parallel,
|
2011-11-07 22:21:51 +01:00
|
|
|
|
"help|?" => \$help,
|
2011-05-08 20:08:35 +02:00
|
|
|
|
);
|
|
|
|
|
|
2011-11-08 00:04:45 +01:00
|
|
|
|
pod2usage(-verbose => 2, -exitcode => 0) if $help;
|
2011-11-07 22:21:51 +01:00
|
|
|
|
|
2011-07-25 15:37:13 +02:00
|
|
|
|
@displays = split(/,/, join(',', @displays));
|
|
|
|
|
@displays = map { s/ //g; $_ } @displays;
|
|
|
|
|
|
2011-11-08 00:04:45 +01:00
|
|
|
|
# No displays specified, let’s start some Xdummy instances.
|
|
|
|
|
if (@displays == 0) {
|
|
|
|
|
my ($displays, $pids) = start_xdummy($parallel);
|
|
|
|
|
@displays = @$displays;
|
|
|
|
|
@childpids = @$pids;
|
|
|
|
|
}
|
2011-07-25 15:37:13 +02:00
|
|
|
|
|
2011-07-27 14:34:35 +02:00
|
|
|
|
# connect to all displays for two reasons:
|
|
|
|
|
# 1: check if the display actually works
|
|
|
|
|
# 2: keep the connection open so that i3 is not the only client. this prevents
|
|
|
|
|
# the X server from exiting (Xdummy will restart it, but not quick enough
|
|
|
|
|
# sometimes)
|
|
|
|
|
my @conns;
|
|
|
|
|
my @wdisplays;
|
|
|
|
|
for my $display (@displays) {
|
2011-09-24 14:09:20 +02:00
|
|
|
|
my $screen;
|
|
|
|
|
my $x = X11::XCB->new($display, $screen);
|
|
|
|
|
if ($x->has_error) {
|
2011-11-09 22:21:10 +01:00
|
|
|
|
Log "WARNING: Not using X11 display $display, could not connect";
|
2011-09-24 14:09:20 +02:00
|
|
|
|
} else {
|
2011-07-27 14:34:35 +02:00
|
|
|
|
push @conns, $x;
|
|
|
|
|
push @wdisplays, $display;
|
2011-09-24 14:09:20 +02:00
|
|
|
|
}
|
2011-07-27 14:34:35 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-11-08 00:04:45 +01:00
|
|
|
|
die "No usable displays found" if @wdisplays == 0;
|
|
|
|
|
|
2011-07-25 15:37:13 +02:00
|
|
|
|
my $config = slurp('i3-test.config');
|
2010-11-13 17:29:20 +01:00
|
|
|
|
|
|
|
|
|
# 1: get a list of all testcases
|
|
|
|
|
my @testfiles = @ARGV;
|
|
|
|
|
|
2011-04-26 19:20:29 +02:00
|
|
|
|
# if no files were passed on command line, run all tests from t/
|
|
|
|
|
@testfiles = <t/*.t> if @testfiles == 0;
|
2010-11-13 17:29:20 +01:00
|
|
|
|
|
|
|
|
|
# 2: create an output directory for this test-run
|
|
|
|
|
my $outdir = "testsuite-";
|
2011-10-04 21:03:08 +02:00
|
|
|
|
$outdir .= POSIX::strftime("%Y-%m-%d-%H-%M-%S-", localtime());
|
2010-11-13 17:29:20 +01:00
|
|
|
|
$outdir .= `git describe --tags`;
|
|
|
|
|
chomp($outdir);
|
|
|
|
|
mkdir($outdir) or die "Could not create $outdir";
|
|
|
|
|
unlink("latest") if -e "latest";
|
|
|
|
|
symlink("$outdir", "latest") or die "Could not symlink latest to $outdir";
|
|
|
|
|
|
2011-11-09 22:21:10 +01:00
|
|
|
|
my $logfile = "$outdir/complete-run.log";
|
|
|
|
|
open $log, '>', $logfile or die "Could not create '$logfile': $!";
|
|
|
|
|
say "Writing logfile to '$logfile'...";
|
|
|
|
|
|
2010-11-13 17:29:20 +01:00
|
|
|
|
# 3: run all tests
|
2011-07-25 15:37:13 +02:00
|
|
|
|
my @done;
|
|
|
|
|
my $num = @testfiles;
|
|
|
|
|
my $harness = TAP::Harness->new({ });
|
|
|
|
|
|
2010-11-13 17:29:20 +01:00
|
|
|
|
my $aggregator = TAP::Parser::Aggregator->new();
|
|
|
|
|
$aggregator->start();
|
2011-07-25 15:37:13 +02:00
|
|
|
|
|
2011-11-09 22:21:10 +01:00
|
|
|
|
status_init(displays => \@wdisplays, tests => $num);
|
|
|
|
|
|
2011-07-25 15:37:13 +02:00
|
|
|
|
# We start tests concurrently: For each display, one test gets started. Every
|
|
|
|
|
# test starts another test after completing.
|
2011-07-27 14:34:35 +02:00
|
|
|
|
take_job($_) for @wdisplays;
|
2011-07-25 15:37:13 +02:00
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Takes a test from the beginning of @testfiles and runs it.
|
|
|
|
|
#
|
|
|
|
|
# The TAP::Parser (which reads the test output) will get called as soon as
|
|
|
|
|
# there is some activity on the stdout file descriptor of the test process
|
|
|
|
|
# (using an AnyEvent->io watcher).
|
|
|
|
|
#
|
|
|
|
|
# When a test completes and @done contains $num entries, the $cv condvar gets
|
|
|
|
|
# triggered to finish testing.
|
|
|
|
|
#
|
|
|
|
|
sub take_job {
|
|
|
|
|
my ($display) = @_;
|
2011-08-10 15:56:39 +02:00
|
|
|
|
|
|
|
|
|
my $test = shift @testfiles;
|
|
|
|
|
return unless $test;
|
2011-11-09 22:21:10 +01:00
|
|
|
|
|
2011-08-10 15:56:39 +02:00
|
|
|
|
my $dont_start = (slurp($test) =~ /# !NO_I3_INSTANCE!/);
|
2011-11-09 22:21:10 +01:00
|
|
|
|
my $basename = basename($test);
|
|
|
|
|
my $logpath = "$outdir/i3-log-for-$basename";
|
2011-08-10 15:56:39 +02:00
|
|
|
|
|
2011-11-09 22:21:10 +01:00
|
|
|
|
my ($fh, $tmpfile) = tempfile("i3-cfg-for-$basename.XXXXXX", UNLINK => 1);
|
2011-07-25 15:37:13 +02:00
|
|
|
|
say $fh $config;
|
|
|
|
|
say $fh "ipc-socket /tmp/nested-$display";
|
|
|
|
|
close($fh);
|
|
|
|
|
|
2011-08-10 15:56:39 +02:00
|
|
|
|
my $activate_cv = AnyEvent->condvar;
|
2011-09-24 14:13:09 +02:00
|
|
|
|
my $time_before_start = [gettimeofday];
|
2010-11-13 17:29:20 +01:00
|
|
|
|
|
2011-10-04 21:55:29 +02:00
|
|
|
|
my $pid;
|
2011-11-07 21:56:36 +01:00
|
|
|
|
if ($dont_start) {
|
|
|
|
|
$activate_cv->send(1);
|
|
|
|
|
} else {
|
2011-10-04 21:55:29 +02:00
|
|
|
|
$pid = activate_i3(
|
|
|
|
|
unix_socket_path => "/tmp/nested-$display-activation",
|
|
|
|
|
display => $display,
|
|
|
|
|
configfile => $tmpfile,
|
2011-11-07 21:52:14 +01:00
|
|
|
|
outdir => $outdir,
|
2011-10-04 21:55:29 +02:00
|
|
|
|
logpath => $logpath,
|
2011-11-07 21:53:49 +01:00
|
|
|
|
valgrind => $valgrind,
|
2011-10-04 21:55:29 +02:00
|
|
|
|
cv => $activate_cv
|
|
|
|
|
);
|
2011-08-10 15:56:39 +02:00
|
|
|
|
|
|
|
|
|
my $child_watcher;
|
|
|
|
|
$child_watcher = AnyEvent->child(pid => $pid, cb => sub {
|
2011-11-09 22:21:10 +01:00
|
|
|
|
Log status($display, "child died. pid = $pid");
|
2011-08-10 15:56:39 +02:00
|
|
|
|
undef $child_watcher;
|
|
|
|
|
});
|
2011-10-04 21:55:29 +02:00
|
|
|
|
}
|
2011-07-25 15:37:13 +02:00
|
|
|
|
|
|
|
|
|
my $kill_i3 = sub {
|
2011-11-07 21:56:36 +01:00
|
|
|
|
my $kill_cv = AnyEvent->condvar;
|
|
|
|
|
|
2011-11-07 23:38:06 +01:00
|
|
|
|
# Don’t bother killing i3 when we haven’t started it
|
|
|
|
|
if ($dont_start) {
|
|
|
|
|
$kill_cv->send();
|
|
|
|
|
return $kill_cv;
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-25 15:37:13 +02:00
|
|
|
|
# When measuring code coverage, try to exit i3 cleanly (otherwise, .gcda
|
|
|
|
|
# files are not written) and fallback to killing it
|
2011-11-07 21:56:36 +01:00
|
|
|
|
if ($coverage_testing || $valgrind) {
|
2011-07-25 15:37:13 +02:00
|
|
|
|
my $exited = 0;
|
2011-11-09 22:21:10 +01:00
|
|
|
|
Log status($display, 'Exiting i3 cleanly...');
|
2011-11-07 21:56:36 +01:00
|
|
|
|
my $i3 = i3("/tmp/nested-$display");
|
|
|
|
|
$i3->connect->cb(sub {
|
|
|
|
|
if (!$_[0]->recv) {
|
|
|
|
|
# Could not connect to i3, just kill -9 it
|
|
|
|
|
kill(9, $pid) or die "Could not kill i3 using kill($pid)";
|
|
|
|
|
$kill_cv->send();
|
|
|
|
|
} else {
|
|
|
|
|
# Connected. Now send exit and continue once that’s acked.
|
|
|
|
|
$i3->command('exit')->cb(sub {
|
|
|
|
|
$kill_cv->send();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
} else {
|
2011-11-09 22:21:10 +01:00
|
|
|
|
Log status($display, 'killing i3');
|
|
|
|
|
|
2011-11-07 21:56:36 +01:00
|
|
|
|
# No coverage testing or valgrind? Just kill -9 i3.
|
|
|
|
|
kill(9, $pid) or die "Could not kill i3 using kill($pid)";
|
|
|
|
|
$kill_cv->send();
|
2011-07-25 15:37:13 +02:00
|
|
|
|
}
|
2011-05-08 20:08:35 +02:00
|
|
|
|
|
2011-11-07 21:56:36 +01:00
|
|
|
|
return $kill_cv;
|
2011-07-25 15:37:13 +02:00
|
|
|
|
};
|
|
|
|
|
|
2011-08-10 15:56:39 +02:00
|
|
|
|
# This will be called as soon as i3 is running and answered to our
|
|
|
|
|
# IPC request
|
|
|
|
|
$activate_cv->cb(sub {
|
2011-09-24 14:13:09 +02:00
|
|
|
|
my $time_activating = [gettimeofday];
|
|
|
|
|
my $start_duration = tv_interval($time_before_start, $time_activating);
|
2011-08-10 15:56:39 +02:00
|
|
|
|
my ($status) = $activate_cv->recv;
|
2011-09-24 14:13:09 +02:00
|
|
|
|
if ($dont_start) {
|
2011-11-09 22:21:10 +01:00
|
|
|
|
Log status($display, 'Not starting i3, testcase does that');
|
2011-09-24 14:13:09 +02:00
|
|
|
|
} else {
|
2011-11-09 22:21:10 +01:00
|
|
|
|
my $duration = sprintf("%.2f", $start_duration);
|
|
|
|
|
Log status($display, "i3 startup: took $duration sec, status = $status");
|
2011-09-24 14:13:09 +02:00
|
|
|
|
}
|
2011-08-10 15:56:39 +02:00
|
|
|
|
|
2011-11-09 23:38:29 +01:00
|
|
|
|
Log status($display, "Starting $test");
|
2011-08-10 15:56:39 +02:00
|
|
|
|
|
|
|
|
|
my $output;
|
2011-10-06 00:17:09 +02:00
|
|
|
|
open(my $spool, '>', \$output);
|
2011-08-10 15:56:39 +02:00
|
|
|
|
my $parser = TAP::Parser->new({
|
2011-11-07 21:53:49 +01:00
|
|
|
|
exec => [ 'sh', '-c', qq|DISPLAY=$display LOGPATH="$logpath" OUTDIR="$outdir" VALGRIND=$valgrind /usr/bin/perl -Ilib $test| ],
|
2011-10-06 00:17:09 +02:00
|
|
|
|
spool => $spool,
|
2011-08-10 15:56:39 +02:00
|
|
|
|
merge => 1,
|
|
|
|
|
});
|
|
|
|
|
|
2011-11-09 22:21:10 +01:00
|
|
|
|
my $tests_completed;
|
|
|
|
|
|
2011-08-10 15:56:39 +02:00
|
|
|
|
my @watchers;
|
|
|
|
|
my ($stdout, $stderr) = $parser->get_select_handles;
|
|
|
|
|
for my $handle ($parser->get_select_handles) {
|
|
|
|
|
my $w;
|
|
|
|
|
$w = AnyEvent->io(
|
|
|
|
|
fh => $handle,
|
|
|
|
|
poll => 'r',
|
|
|
|
|
cb => sub {
|
|
|
|
|
# Ignore activity on stderr (unnecessary with merge => 1,
|
|
|
|
|
# but let’s keep it in here if we want to use merge => 0
|
|
|
|
|
# for some reason in the future).
|
|
|
|
|
return if defined($stderr) and $handle == $stderr;
|
|
|
|
|
|
|
|
|
|
my $result = $parser->next;
|
|
|
|
|
if (defined($result)) {
|
2011-11-09 22:21:10 +01:00
|
|
|
|
$tests_completed++;
|
|
|
|
|
status($display, "Running $test: [$tests_completed/??]");
|
2011-08-10 15:56:39 +02:00
|
|
|
|
# TODO: check if we should bail out
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# $result is not defined, we are done parsing
|
2011-11-09 22:21:10 +01:00
|
|
|
|
Log status($display, "$test finished");
|
2011-08-10 15:56:39 +02:00
|
|
|
|
close($parser->delete_spool);
|
|
|
|
|
$aggregator->add($test, $parser);
|
|
|
|
|
push @done, [ $test, $output ];
|
|
|
|
|
|
2011-11-09 22:21:10 +01:00
|
|
|
|
status_completed(scalar @done);
|
|
|
|
|
|
2011-11-07 21:56:36 +01:00
|
|
|
|
my $exitcv = $kill_i3->();
|
|
|
|
|
$exitcv->cb(sub {
|
2011-08-10 15:56:39 +02:00
|
|
|
|
|
2011-11-07 21:56:36 +01:00
|
|
|
|
undef $_ for @watchers;
|
|
|
|
|
if (@done == $num) {
|
|
|
|
|
$cv->send;
|
|
|
|
|
} else {
|
|
|
|
|
take_job($display);
|
|
|
|
|
}
|
|
|
|
|
});
|
2011-07-25 15:37:13 +02:00
|
|
|
|
}
|
2011-08-10 15:56:39 +02:00
|
|
|
|
);
|
|
|
|
|
push @watchers, $w;
|
|
|
|
|
}
|
|
|
|
|
});
|
2010-11-13 17:29:20 +01:00
|
|
|
|
}
|
2011-07-25 15:37:13 +02:00
|
|
|
|
|
|
|
|
|
$cv->recv;
|
|
|
|
|
|
2010-11-13 17:29:20 +01:00
|
|
|
|
$aggregator->stop();
|
|
|
|
|
|
2011-11-09 22:21:10 +01:00
|
|
|
|
# print empty lines to seperate failed tests from statuslines
|
|
|
|
|
print "\n\n";
|
2011-11-08 00:04:45 +01:00
|
|
|
|
|
2011-07-25 15:37:13 +02:00
|
|
|
|
for (@done) {
|
|
|
|
|
my ($test, $output) = @$_;
|
2011-11-09 22:21:10 +01:00
|
|
|
|
Log "output for $test:";
|
|
|
|
|
Log $output;
|
|
|
|
|
# print error messages of failed tests
|
|
|
|
|
say for $output =~ /^not ok.+\n+((?:^#.+\n)+)/mg
|
2011-07-25 15:37:13 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-11-13 17:29:20 +01:00
|
|
|
|
# 4: print summary
|
|
|
|
|
$harness->summary($aggregator);
|
2011-11-07 22:21:51 +01:00
|
|
|
|
|
2011-11-09 22:21:10 +01:00
|
|
|
|
close $log;
|
|
|
|
|
|
2011-11-08 00:04:45 +01:00
|
|
|
|
kill(15, $_) for @childpids;
|
|
|
|
|
|
2011-11-07 22:21:51 +01:00
|
|
|
|
__END__
|
|
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
|
|
complete-run.pl - Run the i3 testsuite
|
|
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
|
|
complete-run.pl [files...]
|
|
|
|
|
|
2011-11-08 00:04:45 +01:00
|
|
|
|
=head1 EXAMPLE
|
|
|
|
|
|
|
|
|
|
To run the whole testsuite on a reasonable number of Xdummy instances (your
|
|
|
|
|
running X11 will not be touched), run:
|
|
|
|
|
./complete-run.pl
|
|
|
|
|
|
|
|
|
|
To run only a specific test (useful when developing a new feature), run:
|
|
|
|
|
./complete-run t/100-fullscreen.t
|
|
|
|
|
|
2011-11-07 22:21:51 +01:00
|
|
|
|
=head1 OPTIONS
|
|
|
|
|
|
|
|
|
|
=over 8
|
|
|
|
|
|
|
|
|
|
=item B<--display>
|
|
|
|
|
|
|
|
|
|
Specifies which X11 display should be used. Can be specified multiple times and
|
|
|
|
|
will parallelize the tests:
|
|
|
|
|
|
|
|
|
|
# Run tests on the second X server
|
|
|
|
|
./complete-run.pl -d :1
|
|
|
|
|
|
|
|
|
|
# Run four tests in parallel on some Xdummy servers
|
|
|
|
|
./complete-run.pl -d :1,:2,:3,:4
|
|
|
|
|
|
2011-11-08 00:04:45 +01:00
|
|
|
|
Note that it is not necessary to specify this anymore. If omitted,
|
|
|
|
|
complete-run.pl will start (num_cores * 2) Xdummy instances.
|
|
|
|
|
|
2011-11-07 22:21:51 +01:00
|
|
|
|
=item B<--valgrind>
|
|
|
|
|
|
|
|
|
|
Runs i3 under valgrind to find memory problems. The output will be available in
|
|
|
|
|
C<latest/valgrind.log>.
|
|
|
|
|
|
|
|
|
|
=item B<--coverage-testing>
|
|
|
|
|
|
|
|
|
|
Exits i3 cleanly (instead of kill -9) to make coverage testing work properly.
|
2011-11-08 00:04:45 +01:00
|
|
|
|
|
|
|
|
|
=item B<--parallel>
|
|
|
|
|
|
|
|
|
|
Number of Xdummy instances to start (if you don’t want to start num_cores * 2
|
|
|
|
|
instances for some reason).
|
|
|
|
|
|
|
|
|
|
# Run all tests on a single Xdummy instance
|
|
|
|
|
./complete-run.pl -p 1
|