From f35bdc18f62811cfc7a73675754654f48d1a0b69 Mon Sep 17 00:00:00 2001 From: Tanya Lattner Date: Mon, 22 Nov 2004 17:16:01 +0000 Subject: [PATCH] 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 --- utils/NightlyTest.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index e31414b8c8e..c871f810b92 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";