diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-23 16:23:50 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-23 16:23:50 +0000 |
commit | fdd10b18f28fedeb05afcf6d0fe513e413e02ff3 (patch) | |
tree | fce613ba1360c2f5952c951591e95bc562fc072c /utils | |
parent | adbcc1025ea4be03935508ffbe24d07e3bf50d1d (diff) |
Make sure the timing output is also sent to the log file for dejagnu, not
the log file of the NightlyTest.pl script.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18158 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/NightlyTest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index 053067e4da..39db5d3324 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -548,7 +548,7 @@ if($RUNDEJAGNU) { #Run the feature and regression tests, results are put into testrun.sum #Full log in testrun.log - system "time -p gmake $MAKEOPTS check-dejagnu > $dejagnu_output 2>&1"; + system "(time -p gmake $MAKEOPTS check-dejagnu) > $dejagnu_output 2>&1"; #Extract time of dejagnu tests my $DejagnuTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$dejagnu_output"; |