diff options
author | Tanya Lattner <tonic@nondot.org> | 2004-11-22 17:16:01 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2004-11-22 17:16:01 +0000 |
commit | f35bdc18f62811cfc7a73675754654f48d1a0b69 (patch) | |
tree | 89da8fa29abc3464486cd4010233e85b806e822a | |
parent | f5feaf4fe381476b0ea567d7837c64b6590133e9 (diff) | |
download | external_llvm-f35bdc18f62811cfc7a73675754654f48d1a0b69.zip external_llvm-f35bdc18f62811cfc7a73675754654f48d1a0b69.tar.gz external_llvm-f35bdc18f62811cfc7a73675754654f48d1a0b69.tar.bz2 |
Changed to catch stderror of dejagnu and fixed missing quote.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18105 91177308-0d34-0410-b5e6-96231b3b80d8
-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 e31414b..c871f81 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -551,7 +551,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"; + 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"; |