[mpich] MPICH primary repository branch, master, updated. v3.1-45-g6d076d4
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "MPICH primary repository". The branch, master has been updated via 6d076d4cd3b51f32dbd689746e1b0684287c36d9 (commit) from b94333a280d535e1ba9769cc0cd3e84d5973420d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- http://git.mpich.org/mpich.git/commitdiff/6d076d4cd3b51f32dbd689746e1b068428... commit 6d076d4cd3b51f32dbd689746e1b0684287c36d9 Author: Ken Raffenetti <[email protected]> Date: Wed Feb 26 12:31:21 2014 -0600 fix warning for ambiguous usage of perl localtime Signed-off-by: Junchao Zhang <[email protected]> diff --git a/maint/extractcvars b/maint/extractcvars index e159534..96e6563 100755 --- a/maint/extractcvars +++ b/maint/extractcvars @@ -123,7 +123,7 @@ foreach my $p (@cvars) { print "Categories include: \n".Dumper(@categories) if $debug; print "Cvars include :\n".Dumper(@cvars)."\n" if $debug; -my $run_timestamp = localtime; +my $run_timestamp = localtime(); my $uc_ns = uc($ns); # Setup output files diff --git a/test/mpi/runtests.in b/test/mpi/runtests.in index aced005..05379b9 100644 --- a/test/mpi/runtests.in +++ b/test/mpi/runtests.in @@ -1137,7 +1137,7 @@ sub RunTestFailed { print TAPOUT " Directory: $workdir\n"; print TAPOUT " File: $programname\n"; print TAPOUT " Num-procs: $np\n"; - print TAPOUT " Date: \"" . localtime . "\"\n"; + print TAPOUT " Date: \"" . localtime() . "\"\n"; # The following would be nice, but it leads to unfortunate formatting in # the Jenkins web output for now. Using comment lines instead, since @@ -1179,7 +1179,7 @@ sub RunTestFailed { print JUNITOUT " Directory: $workdir\n"; print JUNITOUT " File: $programname\n"; print JUNITOUT " Num-procs: $np\n"; - print JUNITOUT " Date: \"" . localtime . "\"\n"; + print JUNITOUT " Date: \"" . localtime() . "\"\n"; print JUNITOUT " ...\n"; ----------------------------------------------------------------------- Summary of changes: maint/extractcvars | 2 +- test/mpi/runtests.in | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) hooks/post-receive -- MPICH primary repository
participants (1)
-
noreply@mpich.org