From: Eric Christopher Date: Mon, 23 Jul 2012 20:54:17 +0000 (+0000) Subject: Fix a "Bad fd number" error on some platforms due to a less portable X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=581a739226381450ea2271cc794618043b6aeb4a;p=oota-llvm.git Fix a "Bad fd number" error on some platforms due to a less portable redirection in the system call. Patch by Andy Gibbs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160644 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/test_debuginfo.pl b/utils/test_debuginfo.pl index a03a1170643..0832a330f4a 100755 --- a/utils/test_debuginfo.pl +++ b/utils/test_debuginfo.pl @@ -49,7 +49,7 @@ if (!$my_debugger) { my $debugger_options = "-q -batch -n -x"; # run debugger and capture output. -system("$my_debugger $debugger_options $debugger_script_file $executable_file >& $output_file"); +system("$my_debugger $debugger_options $debugger_script_file $executable_file > $output_file 2>&1"); # validate output. system("FileCheck", "-input-file", "$output_file", "$testcase_file");