summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/test
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-03-16 13:48:21 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-03-16 13:48:21 +0100
commit28155494661c643e90ed86935187be245c5c54e3 (patch)
tree520d5a46415790120479f31f2bc4ad21af85b4ed /crawl-ref/source/test
parent7e4e0be826b1da53246ade8747a9e150f62ca038 (diff)
downloadcrawl-ref-28155494661c643e90ed86935187be245c5c54e3.tar.gz
crawl-ref-28155494661c643e90ed86935187be245c5c54e3.zip
Fix the version number in test/stress/timeall not going to the STDERR.
Diffstat (limited to 'crawl-ref/source/test')
-rwxr-xr-xcrawl-ref/source/test/stress/timeall2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/test/stress/timeall b/crawl-ref/source/test/stress/timeall
index 8703990b83..54be36edd1 100755
--- a/crawl-ref/source/test/stress/timeall
+++ b/crawl-ref/source/test/stress/timeall
@@ -24,5 +24,5 @@ for $test (@TESTS)
$results{$test} = $times[($NTRIES+1)/2];
}
-print STDERR "Version: "; system("git describe 2>/dev/null || cat util/release_ver");
+print STDERR "Version: "; system("(git describe 2>/dev/null || cat util/release_ver) >&2");
printf STDERR "%s %10.2f\n", $_, $results{$_} for sort keys %results;