]> git.sur5r.net Git - i3/i3/commitdiff
tests: eliminate dependency on the DateTime module by using POSIX::strftime
authorMichael Stapelberg <michael@stapelberg.de>
Tue, 4 Oct 2011 19:03:08 +0000 (20:03 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Tue, 4 Oct 2011 19:03:08 +0000 (20:03 +0100)
testcases/complete-run.pl

index aa32557d0d9bf5d187f8f5600ba81642ec25c42d..04130ec8c489e33b9e15f0685938451a61e710f5 100755 (executable)
@@ -16,7 +16,6 @@ use AnyEvent;
 use IO::Scalar; # not in core :\
 use File::Temp qw(tempfile tempdir);
 use v5.10;
-use DateTime;
 use Data::Dumper;
 use Cwd qw(abs_path);
 use Proc::Background;
@@ -86,7 +85,7 @@ my @testfiles = @ARGV;
 
 # 2: create an output directory for this test-run
 my $outdir = "testsuite-";
-$outdir .= DateTime->now->strftime("%Y-%m-%d-%H-%M-%S-");
+$outdir .= POSIX::strftime("%Y-%m-%d-%H-%M-%S-", localtime());
 $outdir .= `git describe --tags`;
 chomp($outdir);
 mkdir($outdir) or die "Could not create $outdir";