projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
99b653c
)
NNT: Make sure stderr for build commands goes to log file, as intended but misdirected.
author
Daniel Dunbar
<daniel@zuster.org>
Tue, 15 Dec 2009 00:41:47 +0000
(
00:41
+0000)
committer
Daniel Dunbar
<daniel@zuster.org>
Tue, 15 Dec 2009 00:41:47 +0000
(
00:41
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91379
91177308
-0d34-0410-b5e6-
96231b3b80d8
utils/NewNightlyTest.pl
patch
|
blob
|
history
diff --git
a/utils/NewNightlyTest.pl
b/utils/NewNightlyTest.pl
index 51f90184eb393b5e0533d0739f0eaafbf0632ce0..a3063824f8fba5d7dfb538f5dcb6c2646f35a059 100755
(executable)
--- a/
utils/NewNightlyTest.pl
+++ b/
utils/NewNightlyTest.pl
@@
-317,9
+317,9
@@
sub RunLoggedCommand {
} else {
if ($VERBOSE) {
print "$Title\n";
- print "$Command
2>&1 > $Log
\n";
+ print "$Command
> $Log 2>&1
\n";
}
- system "$Command
2>&1 > $Log
";
+ system "$Command
> $Log 2>&1
";
}
}
@@
-336,9
+336,9
@@
sub RunAppendingLoggedCommand {
} else {
if ($VERBOSE) {
print "$Title\n";
- print "$Command
2>&1 > $Log
\n";
+ print "$Command
>> $Log 2>&1
\n";
}
- system "$Command
2>&1 >> $Log
";
+ system "$Command
>> $Log 2>&1
";
}
}