]> git.sur5r.net Git - i3/i3/commitdiff
tests: re-order dependencies in complete-run, make clear which are shipped with Perl
authorMichael Stapelberg <michael@stapelberg.de>
Tue, 4 Oct 2011 19:10:11 +0000 (20:10 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Tue, 4 Oct 2011 19:10:11 +0000 (20:10 +0100)
testcases/complete-run.pl

index 681119d3eb30adcb01c7d70b2e4f389f8a91743e..763a4f92900697fb684fcc623853f850a5596879 100755 (executable)
 
 use strict;
 use warnings;
-use EV;
-use AnyEvent;
-use IO::Scalar; # not in core :\
-use File::Temp qw(tempfile tempdir);
 use v5.10;
-use Data::Dumper;
+# the following are modules which ship with Perl (>= 5.10):
 use Cwd qw(abs_path);
+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);
 use TAP::Harness;
 use TAP::Parser;
 use TAP::Parser::Aggregator;
-use File::Basename qw(basename);
+# the following modules are not shipped with Perl
+use EV;
+use AnyEvent;
+use AnyEvent::Handle;
 use AnyEvent::I3 qw(:all);
-use Try::Tiny;
-use Getopt::Long;
-use Time::HiRes qw(sleep gettimeofday tv_interval);
+use IO::Scalar; # not in core :\
+use Try::Tiny; # not in core
 use X11::XCB;
-use IO::Socket::UNIX; # core
-use POSIX; # core
-use AnyEvent::Handle;
 
 # install a dummy CHLD handler to overwrite the CHLD handler of AnyEvent / EV
 # XXX: we could maybe also use a different loop than the default loop in EV?